summaryrefslogtreecommitdiff
path: root/libc/utils/docgen
diff options
context:
space:
mode:
authorPrashanth <TheStarOne01@proton.me>2025-01-16 05:15:16 +0530
committerGitHub <noreply@github.com>2025-01-15 15:45:16 -0800
commitfadb0e9b52511635c2b9202f5cf2fe9a8f49bfbc (patch)
treef030b068445d6e3c44e5c75da8357e0700f9ba6b /libc/utils/docgen
parent069fbeb82f56f0ce7c0382dfd5d4fa4dc1983a13 (diff)
[libc][docs] add sys/wait to documentation and include related functi… (#122598)
These changes ensure that the `sys/wait` header is documented properly with respect to the issue (#122006 ). **Changes:** 1. **wait.yaml**: Created a new YAML file for `sys/wait` with functions (`wait`, `waitid`, `waitpid`) and related macros. 2. **CMakeLists.txt**: Added `sys/wait` to the documentation directories. 3. **index.rst**: Included `sys/wait` in the documentation index.
Diffstat (limited to 'libc/utils/docgen')
-rw-r--r--libc/utils/docgen/sys/wait.yaml37
1 files changed, 37 insertions, 0 deletions
diff --git a/libc/utils/docgen/sys/wait.yaml b/libc/utils/docgen/sys/wait.yaml
new file mode 100644
index 000000000000..91d67ad4a358
--- /dev/null
+++ b/libc/utils/docgen/sys/wait.yaml
@@ -0,0 +1,37 @@
+functions:
+ wait:
+ in-latest-posix: ''
+ waitid:
+ in-latest-posix: ''
+ waitpid:
+ in-latest-posix: ''
+
+macros:
+ WCONTINUED:
+ in-latest-posix: ''
+ WEXITED:
+ in-latest-posix: ''
+ WEXITSTATUS:
+ in-latest-posix: ''
+ WIFCONTINUED:
+ in-latest-posix: ''
+ WIFEXITED:
+ in-latest-posix: ''
+ WIFSIGNALED:
+ in-latest-posix: ''
+ WIFSTOPPED:
+ in-latest-posix: ''
+ WNOHANG:
+ in-latest-posix: ''
+ WNOWAIT:
+ in-latest-posix: ''
+ WSTOPPED:
+ in-latest-posix: ''
+ WSTOPSIG:
+ in-latest-posix: ''
+ WTERMSIG:
+ in-latest-posix: ''
+ WUNTRACED:
+ in-latest-posix: ''
+ WCORE_DUMPED:
+ in-latest-posix: '' \ No newline at end of file