resource.h 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217
  1. /* Bit values & structures for resource limits. Linux/m68k version.
  2. Copyright (C) 1994,1996,1997,1998,1999,2000,2001 Free Software Foundation, Inc.
  3. This file is part of the GNU C Library.
  4. The GNU C Library is free software; you can redistribute it and/or
  5. modify it under the terms of the GNU Lesser General Public
  6. License as published by the Free Software Foundation; either
  7. version 2.1 of the License, or (at your option) any later version.
  8. The GNU C Library is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  11. Lesser General Public License for more details.
  12. You should have received a copy of the GNU Lesser General Public
  13. License along with the GNU C Library; if not, see
  14. <http://www.gnu.org/licenses/>. */
  15. #ifndef _SYS_RESOURCE_H
  16. # error "Never use <bits/resource.h> directly; include <sys/resource.h> instead."
  17. #endif
  18. #include <bits/types.h>
  19. /* Transmute defines to enumerations. The macro re-definitions are
  20. necessary because some programs want to test for operating system
  21. features with #ifdef RUSAGE_SELF. In ISO C the reflexive
  22. definition is a no-op. */
  23. /* Kinds of resource limit. */
  24. enum __rlimit_resource
  25. {
  26. /* Per-process CPU limit, in seconds. */
  27. RLIMIT_CPU = 0,
  28. #define RLIMIT_CPU RLIMIT_CPU
  29. /* Largest file that can be created, in bytes. */
  30. RLIMIT_FSIZE = 1,
  31. #define RLIMIT_FSIZE RLIMIT_FSIZE
  32. /* Maximum size of data segment, in bytes. */
  33. RLIMIT_DATA = 2,
  34. #define RLIMIT_DATA RLIMIT_DATA
  35. /* Maximum size of stack segment, in bytes. */
  36. RLIMIT_STACK = 3,
  37. #define RLIMIT_STACK RLIMIT_STACK
  38. /* Largest core file that can be created, in bytes. */
  39. RLIMIT_CORE = 4,
  40. #define RLIMIT_CORE RLIMIT_CORE
  41. /* Largest resident set size, in bytes.
  42. This affects swapping; processes that are exceeding their
  43. resident set size will be more likely to have physical memory
  44. taken from them. */
  45. RLIMIT_RSS = 5,
  46. #define RLIMIT_RSS RLIMIT_RSS
  47. /* Number of open files. */
  48. RLIMIT_NOFILE = 7,
  49. RLIMIT_OFILE = RLIMIT_NOFILE, /* BSD name for same. */
  50. #define RLIMIT_NOFILE RLIMIT_NOFILE
  51. #define RLIMIT_OFILE RLIMIT_OFILE
  52. /* Address space limit. */
  53. RLIMIT_AS = 9,
  54. #define RLIMIT_AS RLIMIT_AS
  55. /* Number of processes. */
  56. RLIMIT_NPROC = 6,
  57. #define RLIMIT_NPROC RLIMIT_NPROC
  58. /* Locked-in-memory address space. */
  59. RLIMIT_MEMLOCK = 8,
  60. #define RLIMIT_MEMLOCK RLIMIT_MEMLOCK
  61. /* Maximum number of file locks. */
  62. RLIMIT_LOCKS = 10,
  63. #define RLIMIT_LOCKS RLIMIT_LOCKS
  64. RLIMIT_NLIMITS = 11,
  65. RLIM_NLIMITS = RLIMIT_NLIMITS
  66. #define RLIMIT_NLIMITS RLIMIT_NLIMITS
  67. #define RLIM_NLIMITS RLIM_NLIMITS
  68. };
  69. /* Value to indicate that there is no limit. */
  70. #ifndef __USE_FILE_OFFSET64
  71. # define RLIM_INFINITY ((unsigned long)(~0UL))
  72. #else
  73. # define RLIM_INFINITY 0xffffffffffffffffuLL
  74. #endif
  75. #ifdef __USE_LARGEFILE64
  76. # define RLIM64_INFINITY 0xffffffffffffffffuLL
  77. #endif
  78. /* We can represent all limits. */
  79. #define RLIM_SAVED_MAX RLIM_INFINITY
  80. #define RLIM_SAVED_CUR RLIM_INFINITY
  81. /* Type for resource quantity measurement. */
  82. #ifndef __USE_FILE_OFFSET64
  83. typedef __rlim_t rlim_t;
  84. #else
  85. typedef __rlim64_t rlim_t;
  86. #endif
  87. #ifdef __USE_LARGEFILE64
  88. typedef __rlim64_t rlim64_t;
  89. #endif
  90. struct rlimit
  91. {
  92. /* The current (soft) limit. */
  93. rlim_t rlim_cur;
  94. /* The hard limit. */
  95. rlim_t rlim_max;
  96. };
  97. #ifdef __USE_LARGEFILE64
  98. struct rlimit64
  99. {
  100. /* The current (soft) limit. */
  101. rlim64_t rlim_cur;
  102. /* The hard limit. */
  103. rlim64_t rlim_max;
  104. };
  105. #endif
  106. /* Whose usage statistics do you want? */
  107. enum __rusage_who
  108. {
  109. /* The calling process. */
  110. RUSAGE_SELF = 0,
  111. #define RUSAGE_SELF RUSAGE_SELF
  112. /* All of its terminated child processes. */
  113. RUSAGE_CHILDREN = -1,
  114. #define RUSAGE_CHILDREN RUSAGE_CHILDREN
  115. /* Both. */
  116. RUSAGE_BOTH = -2
  117. #define RUSAGE_BOTH RUSAGE_BOTH
  118. #ifdef __USE_GNU
  119. ,
  120. /* The calling thread. */
  121. RUSAGE_THREAD = 1
  122. # define RUSAGE_THREAD RUSAGE_THREAD
  123. /* Name for the same functionality on Solaris. */
  124. # define RUSAGE_LWP RUSAGE_THREAD
  125. #endif
  126. };
  127. #define __need_timeval
  128. #include <bits/time.h> /* For `struct timeval'. */
  129. /* Structure which says how much of each resource has been used. */
  130. struct rusage
  131. {
  132. /* Total amount of user time used. */
  133. struct timeval ru_utime;
  134. /* Total amount of system time used. */
  135. struct timeval ru_stime;
  136. /* Maximum resident set size (in kilobytes). */
  137. long ru_maxrss;
  138. /* Amount of sharing of text segment memory
  139. with other processes (kilobyte-seconds). */
  140. long ru_ixrss;
  141. /* Amount of data segment memory used (kilobyte-seconds). */
  142. long ru_idrss;
  143. /* Amount of stack memory used (kilobyte-seconds). */
  144. long ru_isrss;
  145. /* Number of soft page faults (i.e. those serviced by reclaiming
  146. a page from the list of pages awaiting reallocation. */
  147. long ru_minflt;
  148. /* Number of hard page faults (i.e. those that required I/O). */
  149. long ru_majflt;
  150. /* Number of times a process was swapped out of physical memory. */
  151. long ru_nswap;
  152. /* Number of input operations via the file system. Note: This
  153. and `ru_oublock' do not include operations with the cache. */
  154. long ru_inblock;
  155. /* Number of output operations via the file system. */
  156. long ru_oublock;
  157. /* Number of IPC messages sent. */
  158. long ru_msgsnd;
  159. /* Number of IPC messages received. */
  160. long ru_msgrcv;
  161. /* Number of signals delivered. */
  162. long ru_nsignals;
  163. /* Number of voluntary context switches, i.e. because the process
  164. gave up the process before it had to (usually to wait for some
  165. resource to be available). */
  166. long ru_nvcsw;
  167. /* Number of involuntary context switches, i.e. a higher priority process
  168. became runnable or the current process used up its time slice. */
  169. long ru_nivcsw;
  170. };
  171. /* Priority limits. */
  172. #define PRIO_MIN -20 /* Minimum priority a process can have. */
  173. #define PRIO_MAX 20 /* Maximum priority a process can have. */
  174. /* The type of the WHICH argument to `getpriority' and `setpriority',
  175. indicating what flavor of entity the WHO argument specifies. */
  176. enum __priority_which
  177. {
  178. PRIO_PROCESS = 0, /* WHO is a process ID. */
  179. #define PRIO_PROCESS PRIO_PROCESS
  180. PRIO_PGRP = 1, /* WHO is a process group ID. */
  181. #define PRIO_PGRP PRIO_PGRP
  182. PRIO_USER = 2 /* WHO is a user ID. */
  183. #define PRIO_USER PRIO_USER
  184. };