posix1_lim.h 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  1. /* Copyright (C) 1991, 1992, 1993, 1996, 1998 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 Library General Public License as
  5. published by the Free Software Foundation; either version 2 of the
  6. 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. Library General Public License for more details.
  11. You should have received a copy of the GNU Library General Public
  12. License along with the GNU C Library; see the file COPYING.LIB. If not,
  13. write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  14. Boston, MA 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. #define _POSIX_NGROUPS_MAX 0
  46. /* Number of files one process can have open at once. */
  47. #define _POSIX_OPEN_MAX 16
  48. /* Number of descriptors that a process may examine with `pselect' or
  49. `select'. */
  50. #define _POSIX_FD_SETSIZE _POSIX_OPEN_MAX
  51. /* Number of bytes in a filename. */
  52. #define _POSIX_NAME_MAX 14
  53. /* Number of bytes in a pathname. */
  54. #define _POSIX_PATH_MAX 255
  55. /* Number of bytes than can be written atomically to a pipe. */
  56. #define _POSIX_PIPE_BUF 512
  57. /* Minimal number of realtime signals reserved for the application. */
  58. #define _POSIX_RTSIG_MAX 8
  59. /* Number of semaphores a process can have. */
  60. #define _POSIX_SEM_NSEMS_MAX 256
  61. /* Maximal value of a semaphore. */
  62. #define _POSIX_SEM_VALUE_MAX 32767
  63. /* Number of pending realtime signals. */
  64. #define _POSIX_SIGQUEUE_MAX 32
  65. /* Largest value of a `ssize_t'. */
  66. #define _POSIX_SSIZE_MAX 32767
  67. /* Number of streams a process can have open at once. */
  68. #define _POSIX_STREAM_MAX 8
  69. /* Maximum length of a timezone name (element of `tzname'). */
  70. #define _POSIX_TZNAME_MAX 3
  71. /* Maximum number of connections that can be queued on a socket. */
  72. #define _POSIX_QLIMIT 1
  73. /* Maximum number of bytes that can be buffered on a socket for send
  74. or receive. */
  75. #define _POSIX_HIWAT _POSIX_PIPE_BUF
  76. /* Maximum number of elements in an `iovec' array. */
  77. #define _POSIX_UIO_MAXIOV 16
  78. /* Maximum number of characters in a tty name. */
  79. #define _POSIX_TTY_NAME_MAX 9
  80. /* Number of timer for a process. */
  81. #define _POSIX_TIMER_MAX 32
  82. /* Maximum length of login name. */
  83. #define _POSIX_LOGIN_NAME_MAX 9
  84. /* Maximum clock resolution in nanoseconds. */
  85. #define _POSIX_CLOCKRES_MIN 20000000
  86. /* Get the implementation-specific values for the above. */
  87. #include <bits/local_lim.h>
  88. #ifndef SSIZE_MAX
  89. # define SSIZE_MAX INT_MAX
  90. #endif
  91. /* This value is a guaranteed minimum maximum.
  92. The current maximum can be got from `sysconf'. */
  93. #ifndef NGROUPS_MAX
  94. # define NGROUPS_MAX _POSIX_NGROUPS_MAX
  95. #endif
  96. #endif /* bits/posix1_lim.h */