mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-12-26 01:07:21 +00:00
[libc][syscalls] 在标准输入输出前加校验,反正在libc初始化之前调用printf出问题
This commit is contained in:
@@ -15,6 +15,10 @@
|
||||
#include <yfuns.h>
|
||||
#include "libc.h"
|
||||
|
||||
#define DBG_TAG "dlib.syscall_read"
|
||||
#define DBG_LVL DBG_INFO
|
||||
#include <rtdbg.h>
|
||||
|
||||
#pragma module_name = "?__read"
|
||||
size_t __read(int handle, unsigned char *buf, size_t len)
|
||||
{
|
||||
@@ -25,6 +29,11 @@ size_t __read(int handle, unsigned char *buf, size_t len)
|
||||
if (handle == _LLIO_STDIN)
|
||||
{
|
||||
#ifdef RT_USING_POSIX
|
||||
if (libc_stdio_get_console() < 0)
|
||||
{
|
||||
LOG_E("invoke standard input before initializing libc");
|
||||
return _LLIO_ERROR;
|
||||
}
|
||||
return read(STDIN_FILENO, buf, len);
|
||||
#else
|
||||
return _LLIO_ERROR;
|
||||
|
||||
Reference in New Issue
Block a user