Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * This file is subject to the terms and conditions of the GNU General Public |
| 3 | * License. See the file "COPYING" in the main directory of this archive |
| 4 | * for more details. |
| 5 | * |
| 6 | * Copyright (C) 1995, 96, 98, 99, 2000 by Ralf Baechle |
| 7 | * Copyright (C) 1999 Silicon Graphics, Inc. |
| 8 | */ |
| 9 | #ifndef _ASM_RESOURCE_H |
| 10 | #define _ASM_RESOURCE_H |
| 11 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12 | |
| 13 | /* |
| 14 | * These five resource limit IDs have a MIPS/Linux-specific ordering, |
| 15 | * the rest comes from the generic header: |
| 16 | */ |
| 17 | #define RLIMIT_NOFILE 5 /* max number of open files */ |
| 18 | #define RLIMIT_AS 6 /* address space limit */ |
| 19 | #define RLIMIT_RSS 7 /* max resident set size */ |
| 20 | #define RLIMIT_NPROC 8 /* max number of processes */ |
| 21 | #define RLIMIT_MEMLOCK 9 /* max locked-in-memory address space */ |
| 22 | |
| 23 | /* |
| 24 | * SuS says limits have to be unsigned. |
| 25 | * Which makes a ton more sense anyway, |
| 26 | * but we keep the old value on MIPS32, |
| 27 | * for compatibility: |
| 28 | */ |
Ralf Baechle | 875d43e | 2005-09-03 15:56:16 -0700 | [diff] [blame] | 29 | #ifdef CONFIG_32BIT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | # define RLIM_INFINITY 0x7fffffffUL |
| 31 | #endif |
| 32 | |
| 33 | #include <asm-generic/resource.h> |
| 34 | |
| 35 | #endif /* _ASM_RESOURCE_H */ |