posix1_lim.h 4.7 KB

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