diff options
| author | Rich Felker <dalias@aerifal.cx> | 2011-04-12 11:50:14 -0400 | 
|---|---|---|
| committer | Rich Felker <dalias@aerifal.cx> | 2011-04-12 11:50:14 -0400 | 
| commit | 209f2bbd95cfac3a71bb8afa452c794d1ccf94cf (patch) | |
| tree | 7043fa49295efca46883ee1a8cb928b38320cb00 | |
| parent | 43b2e9bf26371e096b69f4753ff9f6dbec437f5e (diff) | |
| download | musl-209f2bbd95cfac3a71bb8afa452c794d1ccf94cf.tar.gz | |
add missing rlimit macros
| -rw-r--r-- | include/sys/resource.h | 8 | 
1 files changed, 8 insertions, 0 deletions
| diff --git a/include/sys/resource.h b/include/sys/resource.h index a9ec3bcb..42febc0a 100644 --- a/include/sys/resource.h +++ b/include/sys/resource.h @@ -67,7 +67,15 @@ int setpriority (int, id_t, int);  #define RLIMIT_NPROC   6  #define RLIMIT_MEMLOCK 8  #define RLIMIT_LOCKS   10 +#define RLIMIT_SIGPENDING 11 +#define RLIMIT_MSGQUEUE 12 +#define RLIMIT_NICE    13 +#define RLIMIT_RTPRIO  14 +#define RLIMIT_NLIMITS 15 +#ifdef _GNU_SOURCE +#define RLIMT_NLIMIT RLIMIT_NLIMITS +#endif  #endif | 
