1 /* $Id: resource.h,v 1.4 2000/01/27 23:45:30 ralf Exp $
3 * This file is subject to the terms and conditions of the GNU General Public
4 * License. See the file "COPYING" in the main directory of this archive
7 * Copyright (C) 1995, 1996, 1998 by Ralf Baechle
9 #ifndef _ASM_RESOURCE_H
10 #define _ASM_RESOURCE_H
15 #define RLIMIT_CPU 0 /* CPU time in ms */
16 #define RLIMIT_FSIZE 1 /* Maximum filesize */
17 #define RLIMIT_DATA 2 /* max data size */
18 #define RLIMIT_STACK 3 /* max stack size */
19 #define RLIMIT_CORE 4 /* max core file size */
20 #define RLIMIT_NOFILE 5 /* max number of open files */
21 #define RLIMIT_AS 6 /* mapped memory */
22 #define RLIMIT_RSS 7 /* max resident set size */
23 #define RLIMIT_NPROC 8 /* max number of processes */
24 #define RLIMIT_MEMLOCK 9 /* max locked-in-memory address space */
25 #define RLIMIT_LOCKS 10 /* maximum file locks held */
27 #define RLIM_NLIMITS 11 /* Number of limit flavors. */
30 * SuS says limits have to be unsigned.
31 * Which makes a ton more sense anyway.
33 #define RLIM_INFINITY 0x7fffffffUL
37 #define INIT_RLIMITS \
39 { RLIM_INFINITY, RLIM_INFINITY }, \
40 { RLIM_INFINITY, RLIM_INFINITY }, \
41 { RLIM_INFINITY, RLIM_INFINITY }, \
42 { _STK_LIM, RLIM_INFINITY }, \
43 { 0, RLIM_INFINITY }, \
44 { INR_OPEN, INR_OPEN }, \
45 { RLIM_INFINITY, RLIM_INFINITY }, \
46 { RLIM_INFINITY, RLIM_INFINITY }, \
48 { RLIM_INFINITY, RLIM_INFINITY }, \
49 { RLIM_INFINITY, RLIM_INFINITY }, \
52 #endif /* __KERNEL__ */
54 #endif /* _ASM_RESOURCE_H */