lingfengPeng 29a06142c5 fix dangling pointer in component pthread and dfs_elm (#9976) 3 months ago
..
delay b228f67385 modified: components/libc/posix/delay/delay.c Added comments for all functions in this file 1 year ago
io 1499dbda00 [components][libc/io]add comments for timer fd APIs. 6 months ago
ipc 1d2fde8d73 Add comments for all functions in components/libc/posix/ipc/mqueue.c 1 year ago
libdl 4940bb1051 components: libc: fix pointer-to-integer cast warnings and address truncation 4 months ago
pthreads 29a06142c5 fix dangling pointer in component pthread and dfs_elm (#9976) 3 months 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>