loremmoqi 17a796af24 fix(stdio): ensure compatibility with newlib <3.4.0 by handling removed __sdidinit (#10791) před 3 měsíci
..
delay b228f67385 modified: components/libc/posix/delay/delay.c Added comments for all functions in this file před 1 rokem
io 17a796af24 fix(stdio): ensure compatibility with newlib <3.4.0 by handling removed __sdidinit (#10791) před 3 měsíci
ipc 1d2fde8d73 Add comments for all functions in components/libc/posix/ipc/mqueue.c před 1 rokem
libdl 4940bb1051 components: libc: fix pointer-to-integer cast warnings and address truncation před 10 měsíci
pthreads 66b2bcc080 RT_TIMER_CTRL_SET_TIME only accept rt_tick_t, pass rt_tick_t instead int/rt_int32_t před 3 měsíci
signal b228f67385 modified: components/libc/posix/delay/delay.c Added comments for all functions in this file před 1 rokem
tls b421b4e1f4 修复C++11 thread_local对象析构函数与实际内存释放动作顺序相反问题 před 1 rokem
Kconfig d58c29d23e 除了bsp之外的Kconfig使用rsource替代source před 1 rokem
SConscript b513d37cf2 [libc][posix] create 'posix' folder and move related files into it před 4 roky
readme.md 31c3214faf [posix][io]整理posix/io文件夹 (#5539) před 4 roky

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>