1 #ifndef _ALPHA_RESOURCE_H 2 #define _ALPHA_RESOURCE_H 3 4 /* 5 * Resource limits 6 */ 7 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_NOFILE 6 /* max number of open files */ 15 #define RLIMIT_AS 7 /* address space limit(?) */ 16 #define RLIMIT_NPROC 8 /* max number of processes */ 17 18 #ifdef notdef 19 #define RLIMIT_MEMLOCK 9 /* max locked-in-memory address space*/ 20 #endif 21 22 #define RLIM_NLIMITS 9 23 24 #endif