mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
util.pposix: Allow fetching RLIMIT_NICE when available
This commit is contained in:
parent
bf3eb41b55
commit
a2a4f805cd
1 changed files with 3 additions and 0 deletions
|
@ -483,6 +483,9 @@ int string2resource(const char *s) {
|
||||||
if (!strcmp(s, "MEMLOCK")) return RLIMIT_MEMLOCK;
|
if (!strcmp(s, "MEMLOCK")) return RLIMIT_MEMLOCK;
|
||||||
if (!strcmp(s, "NPROC")) return RLIMIT_NPROC;
|
if (!strcmp(s, "NPROC")) return RLIMIT_NPROC;
|
||||||
if (!strcmp(s, "RSS")) return RLIMIT_RSS;
|
if (!strcmp(s, "RSS")) return RLIMIT_RSS;
|
||||||
|
#endif
|
||||||
|
#ifdef RLIMIT_NICE
|
||||||
|
if (!strcmp(s, "NICE")) return RLIMIT_NICE;
|
||||||
#endif
|
#endif
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue