rt-thread/components/libc/posix
Old-Ding 0c25ffa18e fix pthread cond wait scheduling 2026-07-01 11:49:55 +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 [libc/posix] Fix mq_send() to block when queue is full per POSIX standard 2026-02-24 13:39:05 +08:00
libdl [libc][libdl] Fix dlopen() failing to find already-loaded modules 2026-04-14 10:52:24 +08:00
pthreads fix pthread cond wait scheduling 2026-07-01 11:49:55 +08:00
signal 为posix_signal.c文件中的signal函数进行注释 2026-05-26 14:01:02 +08:00
tls Reorganize Group names in build system for clarity and IDE integration #10923 2025-11-16 11:40:53 +08:00
Kconfig [components][clock_time] Refactor time subsystem around clock_time (#11111) 2026-01-31 17:44:27 +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>