copilot-swe-agent[bot] 560deeccec Add comprehensive help for POSIX layer Kconfig files 2 месяцев назад
..
delay 30e1e5e9dc Reorganize Group names in build system for clarity and IDE integration #10923 2 месяцев назад
io 30e1e5e9dc Reorganize Group names in build system for clarity and IDE integration #10923 2 месяцев назад
ipc 560deeccec Add comprehensive help for POSIX layer Kconfig files 2 месяцев назад
libdl 30e1e5e9dc Reorganize Group names in build system for clarity and IDE integration #10923 2 месяцев назад
pthreads 30e1e5e9dc Reorganize Group names in build system for clarity and IDE integration #10923 2 месяцев назад
signal 30e1e5e9dc Reorganize Group names in build system for clarity and IDE integration #10923 2 месяцев назад
tls 30e1e5e9dc Reorganize Group names in build system for clarity and IDE integration #10923 2 месяцев назад
Kconfig 560deeccec Add comprehensive help for POSIX layer Kconfig files 2 месяцев назад
SConscript b513d37cf2 [libc][posix] create 'posix' folder and move related files into it 4 лет назад
readme.md 31c3214faf [posix][io]整理posix/io文件夹 (#5539) 4 лет назад

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>