Merge with Linux 2.5.59.
[linux-2.6/linux-mips.git] / include / asm-arm / resource.h
blob9da87b622a387135e4bae48caf0c865e550f0a12
1 #ifndef _ARM_RESOURCE_H
2 #define _ARM_RESOURCE_H
4 /*
5 * Resource limits
6 */
8 #define RLIMIT_CPU 0 /* CPU time in ms */
9 #define RLIMIT_FSIZE 1 /* Maximum filesize */
10 #define RLIMIT_DATA 2 /* max data size */
11 #define RLIMIT_STACK 3 /* max stack size */
12 #define RLIMIT_CORE 4 /* max core file size */
13 #define RLIMIT_RSS 5 /* max resident set size */
14 #define RLIMIT_NPROC 6 /* max number of processes */
15 #define RLIMIT_NOFILE 7 /* max number of open files */
16 #define RLIMIT_MEMLOCK 8 /* max locked-in-memory address space */
17 #define RLIMIT_AS 9 /* address space limit */
18 #define RLIMIT_LOCKS 10 /* maximum file locks held */
20 #define RLIM_NLIMITS 11
22 #ifdef __KERNEL__
25 * SuS says limits have to be unsigned.
26 * Which makes a ton more sense anyway.
28 #define RLIM_INFINITY (~0UL)
30 #define INIT_RLIMITS \
31 { \
32 { RLIM_INFINITY, RLIM_INFINITY }, \
33 { RLIM_INFINITY, RLIM_INFINITY }, \
34 { RLIM_INFINITY, RLIM_INFINITY }, \
35 { _STK_LIM, RLIM_INFINITY }, \
36 { 0, RLIM_INFINITY }, \
37 { RLIM_INFINITY, RLIM_INFINITY }, \
38 { 0, 0 }, \
39 { INR_OPEN, INR_OPEN }, \
40 { RLIM_INFINITY, RLIM_INFINITY }, \
41 { RLIM_INFINITY, RLIM_INFINITY }, \
42 { RLIM_INFINITY, RLIM_INFINITY }, \
45 #endif /* __KERNEL__ */
47 #endif