Troy 946dd264ed Add comments for all functions in components/libc/posix/io/termios/termios.c 1 anno fa
..
delay b228f67385 modified: components/libc/posix/delay/delay.c Added comments for all functions in this file 1 anno fa
io 946dd264ed Add comments for all functions in components/libc/posix/io/termios/termios.c 1 anno fa
ipc 98a234d430 Add some comments in components/libc/posix/ipc/semaphore.c (#8848) 1 anno fa
libdl 71560bafb5 🎯 Sync smart & scheduler codes (#8537) 1 anno fa
pthreads 2cc88b6cf5 修复POSIX线程本地存储寻找posix线程句柄时的逻辑错误 (#8790) 1 anno fa
signal b228f67385 modified: components/libc/posix/delay/delay.c Added comments for all functions in this file 1 anno fa
Kconfig 83e95bdff4 sync smart & dfs (#8672) 1 anno fa
SConscript b513d37cf2 [libc][posix] create 'posix' folder and move related files into it 4 anni fa
readme.md 31c3214faf [posix][io]整理posix/io文件夹 (#5539) 4 anni fa

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>