LibC: Define RLIM_NLIMITS constant

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.
This commit is contained in:
Rodrigo Tobar 2021-09-10 00:27:16 +08:00 committed by Andreas Kling
parent 84f0d2aece
commit 2c22ff94b4
Notes: sideshowbarker 2024-07-18 04:21:48 +09:00

View File

@ -44,6 +44,8 @@ int getrusage(int who, struct rusage* usage);
#define RLIMIT_STACK 6
#define RLIMIT_AS 7
#define RLIM_NLIMITS 8
#define RLIM_INFINITY SIZE_MAX
typedef size_t rlim_t;