mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-01-31 11:37:35 +00:00
fa20edc44d
- Remove most __ASSEMBLER__ __LINKER__ ifdefs - Rename libc/intrin/bits.h to libc/serialize.h - Block pthread cancelation in fchmodat() polyfill - Remove `clang-format off` statements in third_party
48 lines
1.7 KiB
C
48 lines
1.7 KiB
C
#ifndef COSMOPOLITAN_LIBC_SYSV_CONSTS_RLIMIT_H_
|
|
#define COSMOPOLITAN_LIBC_SYSV_CONSTS_RLIMIT_H_
|
|
COSMOPOLITAN_C_START_
|
|
|
|
extern const unsigned RLIMIT_AS;
|
|
extern const unsigned RLIMIT_CORE;
|
|
extern const unsigned RLIMIT_CPU;
|
|
extern const unsigned RLIMIT_DATA;
|
|
extern const unsigned RLIMIT_FSIZE;
|
|
extern const unsigned RLIMIT_LOCKS;
|
|
extern const unsigned RLIMIT_MEMLOCK;
|
|
extern const unsigned RLIMIT_MSGQUEUE;
|
|
extern const unsigned RLIMIT_NICE;
|
|
extern const unsigned RLIMIT_NOFILE;
|
|
extern const unsigned RLIMIT_NPROC;
|
|
extern const unsigned RLIMIT_NPTS;
|
|
extern const unsigned RLIMIT_RSS;
|
|
extern const unsigned RLIMIT_RTPRIO;
|
|
extern const unsigned RLIMIT_RTTIME;
|
|
extern const unsigned RLIMIT_SBSIZE;
|
|
extern const unsigned RLIMIT_SIGPENDING;
|
|
extern const unsigned RLIMIT_STACK;
|
|
extern const unsigned RLIMIT_SWAP;
|
|
extern const unsigned RLIMIT_VMEM;
|
|
|
|
#define RLIMIT_AS RLIMIT_AS
|
|
#define RLIMIT_CORE RLIMIT_CORE
|
|
#define RLIMIT_CPU RLIMIT_CPU
|
|
#define RLIMIT_DATA RLIMIT_DATA
|
|
#define RLIMIT_FSIZE RLIMIT_FSIZE
|
|
#define RLIMIT_LOCKS RLIMIT_LOCKS
|
|
#define RLIMIT_MEMLOCK RLIMIT_MEMLOCK
|
|
#define RLIMIT_MSGQUEUE RLIMIT_MSGQUEUE
|
|
#define RLIMIT_NICE RLIMIT_NICE
|
|
#define RLIMIT_NOFILE RLIMIT_NOFILE
|
|
#define RLIMIT_NPROC RLIMIT_NPROC
|
|
#define RLIMIT_NPTS RLIMIT_NPTS
|
|
#define RLIMIT_RSS RLIMIT_RSS
|
|
#define RLIMIT_RTPRIO RLIMIT_RTPRIO
|
|
#define RLIMIT_RTTIME RLIMIT_RTTIME
|
|
#define RLIMIT_SBSIZE RLIMIT_SBSIZE
|
|
#define RLIMIT_SIGPENDING RLIMIT_SIGPENDING
|
|
#define RLIMIT_STACK RLIMIT_STACK
|
|
#define RLIMIT_SWAP RLIMIT_SWAP
|
|
#define RLIMIT_VMEM RLIMIT_VMEM
|
|
|
|
COSMOPOLITAN_C_END_
|
|
#endif /* COSMOPOLITAN_LIBC_SYSV_CONSTS_RLIMIT_H_ */
|