chinky b9f5bf7d91 [libc]优化usleep函数 2 years ago
..
delay b9f5bf7d91 [libc]优化usleep函数 2 years ago
io 1f092da9e0 fix compiling warning. 2 years ago
ipc 7f9ccd3c80 格式化代码 2 years ago
libdl 50f041f5c2 [Scons] 将GCC判断条件改为列表方式,方便后续增加新的编译工具链 3 years ago
pthreads e61d05ca1a [fix] the risk for function exit() when open pthread support. (#6229) 2 years ago
signal 9bc68d26a4 format Kconfig and sconscript 2 years ago
Kconfig be892de35a [posix] add RT_USING_POSIX_SOCKET (#5731) 3 years 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>