resource.h 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. /* Copyright (C) 1992,94,1996-2000,2002,2004 Free Software Foundation, Inc.
  2. This file is part of the GNU C Library.
  3. The GNU C Library is free software; you can redistribute it and/or
  4. modify it under the terms of the GNU Lesser General Public
  5. License as published by the Free Software Foundation; either
  6. version 2.1 of the License, or (at your option) any later version.
  7. The GNU C Library is distributed in the hope that it will be useful,
  8. but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  10. Lesser General Public License for more details.
  11. You should have received a copy of the GNU Lesser General Public
  12. License along with the GNU C Library; if not, write to the Free
  13. Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
  14. 02111-1307 USA. */
  15. #ifndef _SYS_RESOURCE_H
  16. #define _SYS_RESOURCE_H 1
  17. #include <features.h>
  18. /* Get the system-dependent definitions of structures and bit values. */
  19. #include <bits/resource.h>
  20. #ifndef __id_t_defined
  21. typedef __id_t id_t;
  22. # define __id_t_defined
  23. #endif
  24. __BEGIN_DECLS
  25. /* The X/Open standard defines that all the functions below must use
  26. `int' as the type for the first argument. When we are compiling with
  27. GNU extensions we change this slightly to provide better error
  28. checking. */
  29. #if defined __USE_GNU && !defined __cplusplus
  30. typedef enum __rlimit_resource __rlimit_resource_t;
  31. typedef enum __rusage_who __rusage_who_t;
  32. typedef enum __priority_which __priority_which_t;
  33. #else
  34. typedef int __rlimit_resource_t;
  35. typedef int __rusage_who_t;
  36. typedef int __priority_which_t;
  37. #endif
  38. /* Put the soft and hard limits for RESOURCE in *RLIMITS.
  39. Returns 0 if successful, -1 if not (and sets errno). */
  40. #ifndef __USE_FILE_OFFSET64
  41. extern int getrlimit (__rlimit_resource_t __resource,
  42. struct rlimit *__rlimits) __THROW;
  43. libc_hidden_proto(getrlimit)
  44. #else
  45. # ifdef __REDIRECT_NTH
  46. extern int __REDIRECT_NTH (getrlimit, (__rlimit_resource_t __resource,
  47. struct rlimit *__rlimits), getrlimit64);
  48. # else
  49. # define getrlimit getrlimit64
  50. # endif
  51. #endif
  52. #ifdef __USE_LARGEFILE64
  53. extern int getrlimit64 (__rlimit_resource_t __resource,
  54. struct rlimit64 *__rlimits) __THROW;
  55. #endif
  56. /* Set the soft and hard limits for RESOURCE to *RLIMITS.
  57. Only the super-user can increase hard limits.
  58. Return 0 if successful, -1 if not (and sets errno). */
  59. #ifndef __USE_FILE_OFFSET64
  60. extern int setrlimit (__rlimit_resource_t __resource,
  61. __const struct rlimit *__rlimits) __THROW;
  62. libc_hidden_proto(setrlimit)
  63. #else
  64. # ifdef __REDIRECT_NTH
  65. extern int __REDIRECT_NTH (setrlimit, (__rlimit_resource_t __resource,
  66. __const struct rlimit *__rlimits),
  67. setrlimit64);
  68. # else
  69. # define setrlimit setrlimit64
  70. # endif
  71. #endif
  72. #ifdef __USE_LARGEFILE64
  73. extern int setrlimit64 (__rlimit_resource_t __resource,
  74. __const struct rlimit64 *__rlimits) __THROW;
  75. #endif
  76. /* Return resource usage information on process indicated by WHO
  77. and put it in *USAGE. Returns 0 for success, -1 for failure. */
  78. extern int getrusage (__rusage_who_t __who, struct rusage *__usage) __THROW;
  79. /* Return the highest priority of any process specified by WHICH and WHO
  80. (see above); if WHO is zero, the current process, process group, or user
  81. (as specified by WHO) is used. A lower priority number means higher
  82. priority. Priorities range from PRIO_MIN to PRIO_MAX (above). */
  83. extern int getpriority (__priority_which_t __which, id_t __who) __THROW;
  84. libc_hidden_proto(getpriority)
  85. /* Set the priority of all processes specified by WHICH and WHO (see above)
  86. to PRIO. Returns 0 on success, -1 on errors. */
  87. extern int setpriority (__priority_which_t __which, id_t __who, int __prio)
  88. __THROW;
  89. libc_hidden_proto(setpriority)
  90. __END_DECLS
  91. #endif /* sys/resource.h */