resource.h 6.3 KB

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