rt-thread/components/libc/posix
laidene d09135f76b [components][libc][posix][libdl] Optimization: Redundant calculations in a for loop 2025-12-18 13:57:07 +08:00
..
delay Reorganize Group names in build system for clarity and IDE integration #10923 2025-11-16 11:40:53 +08:00
io [LIBC/AIO] Set the AIO work stack size default. 2025-12-02 09:50:52 +08:00
ipc Reorganize Group names in build system for clarity and IDE integration #10923 2025-11-16 11:40:53 +08:00
libdl [components][libc][posix][libdl] Optimization: Redundant calculations in a for loop 2025-12-18 13:57:07 +08:00
pthreads Reorganize Group names in build system for clarity and IDE integration #10923 2025-11-16 11:40:53 +08:00
signal Reorganize Group names in build system for clarity and IDE integration #10923 2025-11-16 11:40:53 +08:00
tls Reorganize Group names in build system for clarity and IDE integration #10923 2025-11-16 11:40:53 +08:00
Kconfig 除了bsp之外的Kconfig使用rsource替代source 2024-06-20 14:40:42 +08:00
SConscript [libc][posix] create 'posix' folder and move related files into it 2021-10-17 17:19:12 -04:00
readme.md [posix][io]整理posix/io文件夹 (#5539) 2022-01-24 09:16:57 +08:00

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>