[libc-commits] [libc] bb3d251 - [libc][docs][POSIX] Add sys/select.h implementation status (#122006) (#193948)

via libc-commits libc-commits at lists.llvm.org
Fri Apr 24 05:35:38 PDT 2026


Author: Petter Berntsson
Date: 2026-04-24T13:35:34+01:00
New Revision: bb3d25167abe9e8f4afa5cf8925577f1843674d5

URL: https://github.com/llvm/llvm-project/commit/bb3d25167abe9e8f4afa5cf8925577f1843674d5
DIFF: https://github.com/llvm/llvm-project/commit/bb3d25167abe9e8f4afa5cf8925577f1843674d5.diff

LOG: [libc][docs][POSIX] Add sys/select.h implementation status (#122006) (#193948)

Add sys/select.h implementation-status docs to llvm-libc.

Added: 
    libc/utils/docgen/sys/select.yaml

Modified: 
    libc/docs/CMakeLists.txt
    libc/docs/headers/index.rst

Removed: 
    


################################################################################
diff  --git a/libc/docs/CMakeLists.txt b/libc/docs/CMakeLists.txt
index 090409210f514..6d89a3e691dc9 100644
--- a/libc/docs/CMakeLists.txt
+++ b/libc/docs/CMakeLists.txt
@@ -66,6 +66,7 @@ if (SPHINX_FOUND)
       strings
       sys/mman
       sys/resource
+      sys/select
       sys/socket
       sys/stat
       sys/statvfs

diff  --git a/libc/docs/headers/index.rst b/libc/docs/headers/index.rst
index cf120fa1b7c56..cfe76f3c4a73f 100644
--- a/libc/docs/headers/index.rst
+++ b/libc/docs/headers/index.rst
@@ -34,6 +34,7 @@ Implementation Status
    strings
    sys/mman
    sys/resource
+   sys/select
    sys/socket
    sys/stat
    sys/statvfs

diff  --git a/libc/utils/docgen/sys/select.yaml b/libc/utils/docgen/sys/select.yaml
new file mode 100644
index 0000000000000..6c4a616a401ce
--- /dev/null
+++ b/libc/utils/docgen/sys/select.yaml
@@ -0,0 +1,17 @@
+functions:
+  pselect:
+    in-latest-posix: ""
+  select:
+    in-latest-posix: ""
+
+macros:
+  FD_CLR:
+    in-latest-posix: ""
+  FD_ISSET:
+    in-latest-posix: ""
+  FD_SET:
+    in-latest-posix: ""
+  FD_SETSIZE:
+    in-latest-posix: ""
+  FD_ZERO:
+    in-latest-posix: ""


        


More information about the libc-commits mailing list