posix1_lim.h 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  1. /* Copyright (C) 1991-1993,96,98,2000,01,02,2003 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. /*
  16. * POSIX Standard: 2.9.2 Minimum Values Added to <limits.h>
  17. *
  18. * Never include this file directly; use <limits.h> instead.
  19. */
  20. #ifndef _BITS_POSIX1_LIM_H
  21. #define _BITS_POSIX1_LIM_H 1
  22. /* These are the standard-mandated minimum values. */
  23. /* Minimum number of operations in one list I/O call. */
  24. #define _POSIX_AIO_LISTIO_MAX 2
  25. /* Minimal number of outstanding asynchronous I/O operations. */
  26. #define _POSIX_AIO_MAX 1
  27. /* Maximum length of arguments to `execve', including environment. */
  28. #define _POSIX_ARG_MAX 4096
  29. /* Maximum simultaneous processes per real user ID. */
  30. #define _POSIX_CHILD_MAX 6
  31. /* Minimal number of timer expiration overruns. */
  32. #define _POSIX_DELAYTIMER_MAX 32
  33. /* Maximum link count of a file. */
  34. #define _POSIX_LINK_MAX 8
  35. /* Number of bytes in a terminal canonical input queue. */
  36. #define _POSIX_MAX_CANON 255
  37. /* Number of bytes for which space will be
  38. available in a terminal input queue. */
  39. #define _POSIX_MAX_INPUT 255
  40. /* Maximum number of message queues open for a process. */
  41. #define _POSIX_MQ_OPEN_MAX 8
  42. /* Maximum number of supported message priorities. */
  43. #define _POSIX_MQ_PRIO_MAX 32
  44. /* Number of simultaneous supplementary group IDs per process. */
  45. #ifdef __USE_XOPEN2K
  46. # define _POSIX_NGROUPS_MAX 8
  47. #else
  48. # define _POSIX_NGROUPS_MAX 0
  49. #endif
  50. /* Number of files one process can have open at once. */
  51. #define _POSIX_OPEN_MAX 16
  52. /* Number of descriptors that a process may examine with `pselect' or
  53. `select'. */
  54. #define _POSIX_FD_SETSIZE _POSIX_OPEN_MAX
  55. /* Number of bytes in a filename. */
  56. #define _POSIX_NAME_MAX 14
  57. /* Number of bytes in a pathname. */
  58. #define _POSIX_PATH_MAX 256
  59. /* Number of bytes than can be written atomically to a pipe. */
  60. #define _POSIX_PIPE_BUF 512
  61. /* Minimal number of realtime signals reserved for the application. */
  62. #define _POSIX_RTSIG_MAX 8
  63. /* Number of semaphores a process can have. */
  64. #define _POSIX_SEM_NSEMS_MAX 256
  65. /* Maximal value of a semaphore. */
  66. #define _POSIX_SEM_VALUE_MAX 32767
  67. /* Number of pending realtime signals. */
  68. #define _POSIX_SIGQUEUE_MAX 32
  69. /* Largest value of a `ssize_t'. */
  70. #define _POSIX_SSIZE_MAX 32767
  71. /* Number of streams a process can have open at once. */
  72. #define _POSIX_STREAM_MAX 8
  73. /* Maximum length of a timezone name (element of `tzname'). */
  74. #define _POSIX_TZNAME_MAX 6
  75. /* Maximum number of connections that can be queued on a socket. */
  76. #define _POSIX_QLIMIT 1
  77. /* Maximum number of bytes that can be buffered on a socket for send
  78. or receive. */
  79. #define _POSIX_HIWAT _POSIX_PIPE_BUF
  80. /* Maximum number of elements in an `iovec' array. */
  81. #define _POSIX_UIO_MAXIOV 16
  82. /* Maximum number of characters in a tty name. */
  83. #define _POSIX_TTY_NAME_MAX 9
  84. /* Number of timer for a process. */
  85. #define _POSIX_TIMER_MAX 32
  86. /* Maximum length of login name. */
  87. #define _POSIX_LOGIN_NAME_MAX 9
  88. /* Maximum clock resolution in nanoseconds. */
  89. #define _POSIX_CLOCKRES_MIN 20000000
  90. /* Get the implementation-specific values for the above. */
  91. #include <bits/local_lim.h>
  92. #ifndef SSIZE_MAX
  93. # define SSIZE_MAX LONG_MAX
  94. #endif
  95. /* This value is a guaranteed minimum maximum.
  96. The current maximum can be got from `sysconf'. */
  97. #ifndef NGROUPS_MAX
  98. # define NGROUPS_MAX 8
  99. #endif
  100. #endif /* bits/posix1_lim.h */