zhkag 33f550cb65 [Kernel] message 可以返回消息的实际大小 (#7709) 2 years ago
..
delay b9f5bf7d91 [libc]优化usleep函数 2 years ago
io b4e59bac4e dfs v2 修改 fd_new 的 startfd 起始值为 0 ;修复 futex_wait 超时时间换算异常; (#7705) 2 years ago
ipc 33f550cb65 [Kernel] message 可以返回消息的实际大小 (#7709) 2 years ago
libdl 93f3cb30e4 [kernel] 将rt_thread结构体改为显式继承rt_object (#7131) 2 years ago
pthreads c4002dea9f [doxygen][libc] Add some comments for posix pthread functions (#7467) 2 years ago
signal c33a21509a [comment][libc] add some comments for functions in posix_signal (#7647) 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>