|
Message-Id: <20200111184212.17854-1-leah@vuxu.org> Date: Sat, 11 Jan 2020 19:42:12 +0100 From: Leah Neukirchen <leah@...u.org> To: musl@...ts.openwall.com Subject: [PATCH] define RLIMIT_RTTIME, bump RLIMIT_NLIMITS This macro exists since Linux 2.6.25 and is defined in glibc since 2011. Signed-off-by: Leah Neukirchen <leah@...u.org> --- include/sys/resource.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/sys/resource.h b/include/sys/resource.h index e0c86ae3..392a38f6 100644 --- a/include/sys/resource.h +++ b/include/sys/resource.h @@ -90,7 +90,8 @@ int prlimit(pid_t, int, const struct rlimit *, struct rlimit *); #define RLIMIT_MSGQUEUE 12 #define RLIMIT_NICE 13 #define RLIMIT_RTPRIO 14 -#define RLIMIT_NLIMITS 15 +#define RLIMIT_RTTIME 16 +#define RLIMIT_NLIMITS 16 #define RLIM_NLIMITS RLIMIT_NLIMITS -- 2.24.1
Powered by blists - more mailing lists
Confused about mailing lists and their use? Read about mailing lists on Wikipedia and check out these guidelines on proper formatting of your messages.