ChenRuiwei f9564d4ee0 [pthreads] Fix pthread_cond_timedwait lacks timeout wakeup 2 місяців тому
..
delay b228f67385 modified: components/libc/posix/delay/delay.c Added comments for all functions in this file 1 рік тому
io 1499dbda00 [components][libc/io]add comments for timer fd APIs. 8 місяців тому
ipc 1d2fde8d73 Add comments for all functions in components/libc/posix/ipc/mqueue.c 1 рік тому
libdl 4940bb1051 components: libc: fix pointer-to-integer cast warnings and address truncation 6 місяців тому
pthreads f9564d4ee0 [pthreads] Fix pthread_cond_timedwait lacks timeout wakeup 1 місяць тому
signal b228f67385 modified: components/libc/posix/delay/delay.c Added comments for all functions in this file 1 рік тому
tls b421b4e1f4 修复C++11 thread_local对象析构函数与实际内存释放动作顺序相反问题 1 рік тому
Kconfig d58c29d23e 除了bsp之外的Kconfig使用rsource替代source 1 рік тому
SConscript b513d37cf2 [libc][posix] create 'posix' folder and move related files into it 3 роки тому
readme.md 31c3214faf [posix][io]整理posix/io文件夹 (#5539) 3 роки тому

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>