Subversion Repositories shark

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
422 giacomo 1
#ifndef _I386_RESOURCE_H
2
#define _I386_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_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 */
19
 
20
#define RLIM_NLIMITS    11
21
 
22
/*
23
 * SuS says limits have to be unsigned.
24
 * Which makes a ton more sense anyway.
25
 */
26
#define RLIM_INFINITY   (~0UL)
27
 
28
#ifdef __KERNEL__
29
 
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 },               \
43
}
44
 
45
#endif /* __KERNEL__ */
46
 
47
#endif