forked from llvm/llvm-project
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[libc][docs] add sys/wait to documentation and include related functi… (
llvm#122598) These changes ensure that the `sys/wait` header is documented properly with respect to the issue (llvm#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.
- Loading branch information
1 parent
72316b9
commit 848ccf2
Showing
3 changed files
with
39 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -55,6 +55,7 @@ if (SPHINX_FOUND) | |
strings | ||
sys/mman | ||
sys/resource | ||
sys/wait | ||
threads | ||
uchar | ||
wchar | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,6 +28,7 @@ Implementation Status | |
strings | ||
sys/mman | ||
sys/resource | ||
sys/wait | ||
threads | ||
time | ||
uchar | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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: '' |