1 /* Bit values & structures for resource limits. 4.4 BSD/generic GNU version.
2 Copyright (C) 1994-2015 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, see
17 <http://www.gnu.org/licenses/>. */
19 #ifndef _SYS_RESOURCE_H
20 # error "Never use <bits/resource.h> directly; include <sys/resource.h> instead."
23 #include <bits/types.h>
25 /* These are the values for 4.4 BSD and GNU. Earlier BSD systems have a
26 subset of these kinds of resource limit. In systems where `getrlimit'
27 and `setrlimit' are not system calls, these are the values used by the C
28 library to emulate them. */
30 /* Kinds of resource limit. */
31 enum __rlimit_resource
33 /* Per-process CPU limit, in seconds. */
35 #define RLIMIT_CPU RLIMIT_CPU
36 /* Largest file that can be created, in bytes. */
38 #define RLIMIT_FSIZE RLIMIT_FSIZE
39 /* Maximum size of data segment, in bytes. */
41 #define RLIMIT_DATA RLIMIT_DATA
42 /* Maximum size of stack segment, in bytes. */
44 #define RLIMIT_STACK RLIMIT_STACK
45 /* Largest core file that can be created, in bytes. */
47 #define RLIMIT_CORE RLIMIT_CORE
48 /* Largest resident set size, in bytes.
49 This affects swapping; processes that are exceeding their
50 resident set size will be more likely to have physical memory
53 #define RLIMIT_RSS RLIMIT_RSS
54 /* Locked-in-memory address space. */
56 #define RLIMIT_MEMLOCK RLIMIT_MEMLOCK
57 /* Number of processes. */
59 #define RLIMIT_NPROC RLIMIT_NPROC
60 /* Number of open files. */
62 RLIMIT_NOFILE
= RLIMIT_OFILE
, /* Another name for the same thing. */
63 #define RLIMIT_OFILE RLIMIT_OFILE
64 #define RLIMIT_NOFILE RLIMIT_NOFILE
65 /* Maximum size of all socket buffers. */
67 #define RLIMIT_SBSIZE RLIMIT_SBSIZE
68 /* Maximum size in bytes of the process address space. */
70 RLIMIT_VMEM
= RLIMIT_AS
, /* Another name for the same thing. */
71 #define RLIMIT_AS RLIMIT_AS
72 #define RLIMIT_VMEM RLIMIT_AS
74 RLIMIT_NLIMITS
, /* Number of limit flavors. */
75 RLIM_NLIMITS
= RLIMIT_NLIMITS
/* Traditional name for same. */
78 /* Value to indicate that there is no limit. */
79 #ifndef __USE_FILE_OFFSET64
80 # define RLIM_INFINITY 0x7fffffff
82 # define RLIM_INFINITY 0x7fffffffffffffffLL
85 #ifdef __USE_LARGEFILE64
86 # define RLIM64_INFINITY 0x7fffffffffffffffLL
90 /* Type for resource quantity measurement. */
91 #ifndef __USE_FILE_OFFSET64
92 typedef __rlim_t rlim_t
;
94 typedef __rlim64_t rlim_t
;
96 #ifdef __USE_LARGEFILE64
97 typedef __rlim64_t rlim64_t
;
102 /* The current (soft) limit. */
104 /* The hard limit. */
108 #ifdef __USE_LARGEFILE64
111 /* The current (soft) limit. */
113 /* The hard limit. */
118 /* Whose usage statistics do you want? */
120 /* The macro definitions are necessary because some programs want
121 to test for operating system features with #ifdef RUSAGE_SELF.
122 In ISO C the reflexive definition is a no-op. */
124 /* The calling process. */
126 #define RUSAGE_SELF RUSAGE_SELF
127 /* All of its terminated child processes. */
129 #define RUSAGE_CHILDREN RUSAGE_CHILDREN
132 #define __need_timeval
133 #include <bits/time.h> /* For `struct timeval'. */
135 /* Structure which says how much of each resource has been used. */
138 /* Total amount of user time used. */
139 struct timeval ru_utime
;
140 /* Total amount of system time used. */
141 struct timeval ru_stime
;
142 /* Maximum resident set size (in kilobytes). */
144 /* Amount of sharing of text segment memory
145 with other processes (kilobyte-seconds). */
147 /* Amount of data segment memory used (kilobyte-seconds). */
149 /* Amount of stack memory used (kilobyte-seconds). */
151 /* Number of soft page faults (i.e. those serviced by reclaiming
152 a page from the list of pages awaiting reallocation. */
154 /* Number of hard page faults (i.e. those that required I/O). */
156 /* Number of times a process was swapped out of physical memory. */
158 /* Number of input operations via the file system. Note: This
159 and `ru_oublock' do not include operations with the cache. */
161 /* Number of output operations via the file system. */
163 /* Number of IPC messages sent. */
165 /* Number of IPC messages received. */
167 /* Number of signals delivered. */
168 long int ru_nsignals
;
169 /* Number of voluntary context switches, i.e. because the process
170 gave up the process before it had to (usually to wait for some
171 resource to be available). */
173 /* Number of involuntary context switches, i.e. a higher priority process
174 became runnable or the current process used up its time slice. */
178 /* Priority limits. */
179 #define PRIO_MIN -20 /* Minimum priority a process can have. */
180 #define PRIO_MAX 20 /* Maximum priority a process can have. */
182 /* The type of the WHICH argument to `getpriority' and `setpriority',
183 indicating what flavor of entity the WHO argument specifies. */
184 enum __priority_which
186 PRIO_PROCESS
= 0, /* WHO is a process ID. */
187 #define PRIO_PROCESS PRIO_PROCESS
188 PRIO_PGRP
= 1, /* WHO is a process group ID. */
189 #define PRIO_PGRP PRIO_PGRP
190 PRIO_USER
= 2 /* WHO is a user ID. */
191 #define PRIO_USER PRIO_USER