Optimize andes_clear_page() and andes_copy_page() with prefetch
[linux-2.6/linux-mips.git] / include / asm-ppc / resource.h
blobd31976a3d651af4a86c6c5ac4b5483c7a004b3d0
1 #ifndef _PPC_RESOURCE_H
2 #define _PPC_RESOURCE_H
4 #define RLIMIT_CPU 0 /* CPU time in ms */
5 #define RLIMIT_FSIZE 1 /* Maximum filesize */
6 #define RLIMIT_DATA 2 /* max data size */
7 #define RLIMIT_STACK 3 /* max stack size */
8 #define RLIMIT_CORE 4 /* max core file size */
9 #define RLIMIT_RSS 5 /* max resident set size */
10 #define RLIMIT_NPROC 6 /* max number of processes */
11 #define RLIMIT_NOFILE 7 /* max number of open files */
12 #define RLIMIT_MEMLOCK 8 /* max locked-in-memory address space */
13 #define RLIMIT_AS 9 /* address space limit(?) */
15 #define RLIM_NLIMITS 10
17 #ifdef __KERNEL__
20 * SuS says limits have to be unsigned.
21 * Which makes a ton more sense anyway.
23 #define RLIM_INFINITY (~0UL)
26 #define INIT_RLIMITS \
27 { \
28 { RLIM_INFINITY, RLIM_INFINITY }, \
29 { RLIM_INFINITY, RLIM_INFINITY }, \
30 { RLIM_INFINITY, RLIM_INFINITY }, \
31 { _STK_LIM, RLIM_INFINITY }, \
32 { 0, RLIM_INFINITY }, \
33 { RLIM_INFINITY, RLIM_INFINITY }, \
34 { 0, 0 }, \
35 { INR_OPEN, INR_OPEN }, \
36 { RLIM_INFINITY, RLIM_INFINITY }, \
37 { RLIM_INFINITY, RLIM_INFINITY }, \
40 #endif /* __KERNEL__ */
42 #endif