latercomer d58c29d23e 除了bsp之外的Kconfig使用rsource替代source 1 year ago
..
delay b228f67385 modified: components/libc/posix/delay/delay.c Added comments for all functions in this file 1 year ago
io 946dd264ed Add comments for all functions in components/libc/posix/io/termios/termios.c 1 year ago
ipc 1d2fde8d73 Add comments for all functions in components/libc/posix/ipc/mqueue.c 1 year ago
libdl 2c9b7c10b9 [kernel] add rt_thread_close() 1 year ago
pthreads 842b555358 [bsp/phytium]c++支持,gpio,qspi驱动修改 (#9059) 1 year ago
signal b228f67385 modified: components/libc/posix/delay/delay.c Added comments for all functions in this file 1 year ago
tls b421b4e1f4 修复C++11 thread_local对象析构函数与实际内存释放动作顺序相反问题 1 year ago
Kconfig d58c29d23e 除了bsp之外的Kconfig使用rsource替代source 1 year ago
SConscript b513d37cf2 [libc][posix] create 'posix' folder and move related files into it 3 years ago
readme.md 31c3214faf [posix][io]整理posix/io文件夹 (#5539) 3 years ago

readme.md

This folder provides functions that are not part of the standard C library but are part of the POSIX.1 (IEEE Standard 1003.1) standard.

NOTE

  1. For consistency of compilation results across the different of platforms(gcc, keil, iar) , use:
    • #include <sys/time.h> to instead of #include <time.h>
    • #include <sys/errno.h> to instead of #include <errno.h>
    • #include <sys/signal.h> to instead of #include <signal.h>