update armlibc/stdio.c

Signed-off-by: yangfasheng <yangfasheng@rt-thread.com>
This commit is contained in:
yangfasheng 2018-09-18 17:53:28 +08:00
parent 1abe83531c
commit f31b11de78
1 changed files with 18 additions and 2 deletions

View File

@ -65,11 +65,27 @@ int libc_stdio_get_console(void)
int libc_stdio_read(void *buffer, size_t size)
{
return read(std_fd, buffer, size);
if (std_fd >= 0)
{
return read(std_fd, buffer, size);
}
else
{
rt_kprintf("Illegal stdio input!\n");
return 0;
}
}
int libc_stdio_write(const void *buffer, size_t size)
{
return write(std_fd, buffer, size);
if (std_fd >= 0)
{
return write(std_fd, buffer, size);
}
else
{
rt_kprintf("Illegal stdio output!\n");
return size;
}
}
#endif