mirror of
https://sourceware.org/git/glibc.git
synced 2024-12-24 11:41:07 +00:00
(RLIMIT_LOCKS): Added. (RLIMIT_NLIMITS): Sync with kernel definition. (PRIO_PROCESS, PRIO_PGRP, PRIO_USER): Also define as macros.
This commit is contained in:
parent
7a266a90d6
commit
94074f7882
@ -76,13 +76,17 @@ enum __rlimit_resource
|
|||||||
RLIMIT_AS = 9,
|
RLIMIT_AS = 9,
|
||||||
#define RLIMIT_AS RLIMIT_AS
|
#define RLIMIT_AS RLIMIT_AS
|
||||||
|
|
||||||
RLIM_NLIMITS = 10
|
/* Maximum number of file locks. */
|
||||||
|
RLIMIT_LOCKS = 10,
|
||||||
|
#define RLIMIT_LOCKS RLIMIT_LOCKS
|
||||||
|
|
||||||
|
RLIMIT_NLIMITS = 11,
|
||||||
|
RLIM_NLIMITS = RLIMIT_NLIMITS
|
||||||
#define RLIMIT_NLIMITS RLIMIT_NLIMITS
|
#define RLIMIT_NLIMITS RLIMIT_NLIMITS
|
||||||
#define RLIM_NLIMITS RLIM_NLIMITS
|
#define RLIM_NLIMITS RLIM_NLIMITS
|
||||||
};
|
};
|
||||||
|
|
||||||
/* Value to indicate that there is no limit. */
|
/* Value to indicate that there is no limit. */
|
||||||
#undef RLIM_INFINITY
|
|
||||||
#define RLIM_INFINITY ~0UL
|
#define RLIM_INFINITY ~0UL
|
||||||
|
|
||||||
#ifdef __USE_LARGEFILE64
|
#ifdef __USE_LARGEFILE64
|
||||||
@ -189,6 +193,9 @@ struct rusage
|
|||||||
enum __priority_which
|
enum __priority_which
|
||||||
{
|
{
|
||||||
PRIO_PROCESS = 0, /* WHO is a process ID. */
|
PRIO_PROCESS = 0, /* WHO is a process ID. */
|
||||||
|
#define PRIO_PROCESS PRIO_PROCESS
|
||||||
PRIO_PGRP = 1, /* WHO is a process group ID. */
|
PRIO_PGRP = 1, /* WHO is a process group ID. */
|
||||||
|
#define PRIO_PGRP PRIO_PGRP
|
||||||
PRIO_USER = 2 /* WHO is a user ID. */
|
PRIO_USER = 2 /* WHO is a user ID. */
|
||||||
|
#define PRIO_USER PRIO_USER
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user