1 /* Copyright (C) 1996-2018 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
4 The GNU C Library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Lesser General Public
6 License as published by the Free Software Foundation; either
7 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.
14 You should have received a copy of the GNU Lesser General Public
15 License along with the GNU C Library; if not, see
16 <http://www.gnu.org/licenses/>. */
19 * Never include this file directly; use <limits.h> instead.
22 /* Additional definitions from X/Open Portability Guide, Issue 4, Version 2
23 System Interfaces and Headers, 4.16 <limits.h>
25 Please note only the values which are not greater than the minimum
26 stated in the standard document are listed. The `sysconf' functions
27 should be used to obtain the actual value. */
30 #define _XOPEN_LIM_H 1
32 /* We do not provide fixed values for
34 ARG_MAX Maximum length of argument to the `exec' function
35 including environment data.
37 ATEXIT_MAX Maximum number of functions that may be registered
40 CHILD_MAX Maximum number of simultaneous processes per real
43 OPEN_MAX Maximum number of files that one process can have open
47 PAGE_SIZE Size of bytes of a page.
49 PASS_MAX Maximum number of significant bytes in a password.
51 We only provide a fixed limit for
53 IOV_MAX Maximum number of `iovec' structures that one process has
54 available for use with `readv' or writev'.
56 if this is indeed fixed by the underlying system.
60 /* Maximum number of `iovec' structures that may be used in a single call
61 to `readv', `writev', etc. */
62 #define _XOPEN_IOV_MAX _POSIX_UIO_MAXIOV
64 #include <bits/uio_lim.h>
66 # define IOV_MAX __IOV_MAX
71 /* Maximum value of `digit' in calls to the `printf' and `scanf'
72 functions. We have no limit, so return a reasonable value. */
73 #define NL_ARGMAX _POSIX_ARG_MAX
75 /* Maximum number of bytes in a `LANG' name. We have no limit. */
76 #define NL_LANGMAX _POSIX2_LINE_MAX
78 /* Maximum message number. We have no limit. */
79 #define NL_MSGMAX INT_MAX
81 /* Maximum number of bytes in N-to-1 collation mapping. We have no
83 #if defined __USE_GNU || !defined __USE_XOPEN2K8
84 # define NL_NMAX INT_MAX
87 /* Maximum set number. We have no limit. */
88 #define NL_SETMAX INT_MAX
90 /* Maximum number of bytes in a message. We have no limit. */
91 #define NL_TEXTMAX INT_MAX
93 /* Default process priority. */
97 /* Number of bits in a word of type `int'. */
102 # if INT_MAX == 2147483647
105 /* Safe assumption. */
109 #elif defined __INT_MAX__
110 # if __INT_MAX__ == 32767
113 # if __INT_MAX__ == 2147483647
116 /* Safe assumption. */
124 /* Number of bits in a word of type `long int'. */
126 # if LONG_MAX == 2147483647
129 /* Safe assumption. */
132 #elif defined __LONG_MAX__
133 # if __LONG_MAX__ == 2147483647
136 /* Safe assumption. */
140 # include <bits/wordsize.h>
141 # if __WORDSIZE == 64
148 #endif /* bits/xopen_lim.h */