util.pposix: Allow fetching RLIMIT_NICE when available

This commit is contained in:
Matthew Wild 2013-03-22 11:23:40 +00:00
parent bf3eb41b55
commit a2a4f805cd

View file

@ -483,6 +483,9 @@ int string2resource(const char *s) {
if (!strcmp(s, "MEMLOCK")) return RLIMIT_MEMLOCK;
if (!strcmp(s, "NPROC")) return RLIMIT_NPROC;
if (!strcmp(s, "RSS")) return RLIMIT_RSS;
#endif
#ifdef RLIMIT_NICE
if (!strcmp(s, "NICE")) return RLIMIT_NICE;
#endif
return -1;
}