Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[libc][docs] Add sys/resource header's implementation status #122563

Merged
merged 1 commit into from
Jan 14, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions libc/docs/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ if (SPHINX_FOUND)
string
strings
sys/mman
sys/resource
threads
uchar
wchar
Expand Down
1 change: 1 addition & 0 deletions libc/docs/headers/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ Implementation Status
string
strings
sys/mman
sys/resource
threads
time
uchar
Expand Down
43 changes: 43 additions & 0 deletions libc/utils/docgen/sys/resource.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
functions:
getpriority:
in-latest-posix: ''
getrlimit:
in-latest-posix: ''
getrusage:
in-latest-posix: ''
setpriority:
in-latest-posix: ''
setrlimit:
in-latest-posix: ''

macros:
PRIO_PROCESS:
in-latest-posix: ''
PRIO_PGRP:
in-latest-posix: ''
PRIO_USER:
in-latest-posix: ''
RLIM_INFINITY:
in-latest-posix: ''
RLIM_SAVED_MAX:
in-latest-posix: ''
RLIM_SAVED_CUR:
in-latest-posix: ''
RLIMIT_CORE:
in-latest-posix: ''
RLIMIT_CPU:
in-latest-posix: ''
RLIMIT_DATA:
in-latest-posix: ''
RLIMIT_FSIZE:
in-latest-posix: ''
RLIMIT_NOFILE:
in-latest-posix: ''
RLIMIT_STACK:
in-latest-posix: ''
RLIMIT_AS:
in-latest-posix: ''
RUSAGE_SELF:
in-latest-posix: ''
RUSAGE_CHILDREN:
in-latest-posix: ''
Loading