summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibC/sys/resource.h
AgeCommit message (Collapse)Author
2021-09-23LibC: Add getpriority() and setpriority() stubsJelle Raaijmakers
Expected behavior left as a FIXME is outlined here: https://pubs.opengroup.org/onlinepubs/7908799/xsh/getpriority.html
2021-09-10LibC: Define RLIM_NLIMITS constantRodrigo Tobar
This is required by programs that want to either iterate over all resources, or check that a resource identifier is valid before passing it down.
2021-05-09LibC: Add definition for the rlim_t typeGunnar Beutner
The missing type caused the binutils and dash ports to fail to build.
2021-05-08LibC: Add stubs for getrlimit()/setrlimit()Gunnar Beutner
2021-04-22Everything: Move to SPDX license identifiers in all files.Brian Gianforcaro
SPDX License Identifiers are a more compact / standardized way of representing file license information. See: https://spdx.dev/resources/use/#identifiers This was done with the `ambr` search and replace tool. ambr --no-parent-ignore --key-from-file --rep-from-file key.txt rep.txt *
2021-01-12Libraries: Move to Userland/Libraries/Andreas Kling