Replace FSF snail mail address with URLs.
[glibc.git] / sysdeps / unix / sysv / linux / sparc / bits / resource.h
blob89fad8feb66a8867a370f83dab93a3dcd255a661
1 /* Bit values & structures for resource limits. Linux/SPARC version.
2 Copyright (C) 1994, 1996-2000, 2004, 2005, 2008, 2009, 2011
3 Free Software Foundation, Inc.
4 This file is part of the GNU C Library.
6 The GNU C Library is free software; you can redistribute it and/or
7 modify it under the terms of the GNU Lesser General Public
8 License as published by the Free Software Foundation; either
9 version 2.1 of the License, or (at your option) any later version.
11 The GNU C Library is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 Lesser General Public License for more details.
16 You should have received a copy of the GNU Lesser General Public
17 License along with the GNU C Library; if not, see
18 <http://www.gnu.org/licenses/>. */
20 #ifndef _SYS_RESOURCE_H
21 # error "Never use <bits/resource.h> directly; include <sys/resource.h> instead."
22 #endif
24 #include <bits/types.h>
26 /* Transmute defines to enumerations. The macro re-definitions are
27 necessary because some programs want to test for operating system
28 features with #ifdef RUSAGE_SELF. In ISO C the reflexive
29 definition is a no-op. */
31 /* Kinds of resource limit. */
32 enum __rlimit_resource
34 /* Per-process CPU limit, in seconds. */
35 RLIMIT_CPU = 0,
36 #define RLIMIT_CPU RLIMIT_CPU
38 /* Largest file that can be created, in bytes. */
39 RLIMIT_FSIZE = 1,
40 #define RLIMIT_FSIZE RLIMIT_FSIZE
42 /* Maximum size of data segment, in bytes. */
43 RLIMIT_DATA = 2,
44 #define RLIMIT_DATA RLIMIT_DATA
46 /* Maximum size of stack segment, in bytes. */
47 RLIMIT_STACK = 3,
48 #define RLIMIT_STACK RLIMIT_STACK
50 /* Largest core file that can be created, in bytes. */
51 RLIMIT_CORE = 4,
52 #define RLIMIT_CORE RLIMIT_CORE
54 /* Largest resident set size, in bytes.
55 This affects swapping; processes that are exceeding their
56 resident set size will be more likely to have physical memory
57 taken from them. */
58 __RLIMIT_RSS = 5,
59 #define RLIMIT_RSS __RLIMIT_RSS
61 /* Number of open files. */
62 RLIMIT_NOFILE = 6,
63 __RLIMIT_OFILE = RLIMIT_NOFILE, /* BSD name for same. */
64 #define RLIMIT_NOFILE RLIMIT_NOFILE
65 #define RLIMIT_OFILE __RLIMIT_OFILE
67 /* Address space limit (?) */
68 RLIMIT_AS = 9,
69 #define RLIMIT_AS RLIMIT_AS
71 /* Number of processes. */
72 __RLIMIT_NPROC = 7,
73 #define RLIMIT_NPROC __RLIMIT_NPROC
75 /* Locked-in-memory address space. */
76 __RLIMIT_MEMLOCK = 8,
77 #define RLIMIT_MEMLOCK __RLIMIT_MEMLOCK
79 /* Maximum number of file locks. */
80 __RLIMIT_LOCKS = 10,
81 #define RLIMIT_LOCKS __RLIMIT_LOCKS
83 /* Maximum number of pending signals. */
84 __RLIMIT_SIGPENDING = 11,
85 #define RLIMIT_SIGPENDING __RLIMIT_SIGPENDING
87 /* Maximum bytes in POSIX message queues. */
88 __RLIMIT_MSGQUEUE = 12,
89 #define RLIMIT_MSGQUEUE __RLIMIT_MSGQUEUE
91 /* Maximum nice priority allowed to raise to.
92 Nice levels 19 .. -20 correspond to 0 .. 39
93 values of this resource limit. */
94 __RLIMIT_NICE = 13,
95 #define RLIMIT_NICE __RLIMIT_NICE
97 /* Maximum realtime priority allowed for non-priviledged
98 processes. */
99 __RLIMIT_RTPRIO = 14,
100 #define RLIMIT_RTPRIO __RLIMIT_RTPRIO
102 /* Maximum CPU time in µs that a process scheduled under a real-time
103 scheduling policy may consume without making a blocking system
104 call before being forcibly descheduled. */
105 __RLIMIT_RTTIME = 15,
106 #define RLIMIT_RTTIME __RLIMIT_RTTIME
108 __RLIMIT_NLIMITS = 16,
109 __RLIM_NLIMITS = __RLIMIT_NLIMITS
110 #define RLIMIT_NLIMITS __RLIMIT_NLIMITS
111 #define RLIM_NLIMITS __RLIM_NLIMITS
114 /* Value to indicate that there is no limit. */
115 #if __WORDSIZE == 64
117 #ifndef __USE_FILE_OFFSET64
118 # define RLIM_INFINITY ((unsigned long int)(~0UL))
119 #else
120 # define RLIM_INFINITY 0xffffffffffffffffuLL
121 #endif
123 #ifdef __USE_LARGEFILE64
124 # define RLIM64_INFINITY 0xffffffffffffffffuLL
125 #endif
127 #else
129 #ifndef __USE_FILE_OFFSET64
130 # define RLIM_INFINITY ((long int)(~0UL >> 1))
131 #else
132 # define RLIM_INFINITY 0xffffffffffffffffLL
133 #endif
135 #ifdef __USE_LARGEFILE64
136 # define RLIM64_INFINITY 0xffffffffffffffffLL
137 #endif
139 #endif
141 /* We can represent all limits. */
142 #define RLIM_SAVED_MAX RLIM_INFINITY
143 #define RLIM_SAVED_CUR RLIM_INFINITY
146 /* Type for resource quantity measurement. */
147 #ifndef __USE_FILE_OFFSET64
148 typedef __rlim_t rlim_t;
149 #else
150 typedef __rlim64_t rlim_t;
151 #endif
152 #ifdef __USE_LARGEFILE64
153 typedef __rlim64_t rlim64_t;
154 #endif
156 struct rlimit
158 /* The current (soft) limit. */
159 rlim_t rlim_cur;
160 /* The hard limit. */
161 rlim_t rlim_max;
164 #ifdef __USE_LARGEFILE64
165 struct rlimit64
167 /* The current (soft) limit. */
168 rlim64_t rlim_cur;
169 /* The hard limit. */
170 rlim64_t rlim_max;
172 #endif
174 /* Whose usage statistics do you want? */
175 enum __rusage_who
177 /* The calling process. */
178 RUSAGE_SELF = 0,
179 #define RUSAGE_SELF RUSAGE_SELF
181 /* All of its terminated child processes. */
182 RUSAGE_CHILDREN = -1
183 #define RUSAGE_CHILDREN RUSAGE_CHILDREN
185 #ifdef __USE_GNU
187 /* The calling thread. */
188 RUSAGE_THREAD = 1
189 # define RUSAGE_THREAD RUSAGE_THREAD
190 /* Name for the same functionality on Solaris. */
191 # define RUSAGE_LWP RUSAGE_THREAD
192 #endif
195 #define __need_timeval
196 #include <bits/time.h> /* For `struct timeval'. */
198 /* Structure which says how much of each resource has been used. */
199 struct rusage
201 /* Total amount of user time used. */
202 struct timeval ru_utime;
203 /* Total amount of system time used. */
204 struct timeval ru_stime;
205 /* Maximum resident set size (in kilobytes). */
206 long int ru_maxrss;
207 /* Amount of sharing of text segment memory
208 with other processes (kilobyte-seconds). */
209 long int ru_ixrss;
210 /* Amount of data segment memory used (kilobyte-seconds). */
211 long int ru_idrss;
212 /* Amount of stack memory used (kilobyte-seconds). */
213 long int ru_isrss;
214 /* Number of soft page faults (i.e. those serviced by reclaiming
215 a page from the list of pages awaiting reallocation. */
216 long int ru_minflt;
217 /* Number of hard page faults (i.e. those that required I/O). */
218 long int ru_majflt;
219 /* Number of times a process was swapped out of physical memory. */
220 long int ru_nswap;
221 /* Number of input operations via the file system. Note: This
222 and `ru_oublock' do not include operations with the cache. */
223 long int ru_inblock;
224 /* Number of output operations via the file system. */
225 long int ru_oublock;
226 /* Number of IPC messages sent. */
227 long int ru_msgsnd;
228 /* Number of IPC messages received. */
229 long int ru_msgrcv;
230 /* Number of signals delivered. */
231 long int ru_nsignals;
232 /* Number of voluntary context switches, i.e. because the process
233 gave up the process before it had to (usually to wait for some
234 resource to be available). */
235 long int ru_nvcsw;
236 /* Number of involuntary context switches, i.e. a higher priority process
237 became runnable or the current process used up its time slice. */
238 long int ru_nivcsw;
241 /* Priority limits. */
242 #define PRIO_MIN -20 /* Minimum priority a process can have. */
243 #define PRIO_MAX 20 /* Maximum priority a process can have. */
245 /* The type of the WHICH argument to `getpriority' and `setpriority',
246 indicating what flavor of entity the WHO argument specifies. */
247 enum __priority_which
249 PRIO_PROCESS = 0, /* WHO is a process ID. */
250 #define PRIO_PROCESS PRIO_PROCESS
251 PRIO_PGRP = 1, /* WHO is a process group ID. */
252 #define PRIO_PGRP PRIO_PGRP
253 PRIO_USER = 2 /* WHO is a user ID. */
254 #define PRIO_USER PRIO_USER