1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
|
/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License, Version 1.0 only
* (the "License"). You may not use this file except in compliance
* with the License.
*
* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
* or http://www.opensolaris.org/os/licensing.
* See the License for the specific language governing permissions
* and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file at usr/src/OPENSOLARIS.LICENSE.
* If applicable, add the following below this CDDL HEADER, with the
* fields enclosed by brackets "[]" replaced with your own identifying
* information: Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*/
/*
* Copyright 2004 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*/
/* Copyright (c) 1988 AT&T */
/* All Rights Reserved */
#ifndef _LIMITS_H
#define _LIMITS_H
#pragma ident "%Z%%M% %I% %E% SMI" /* SVr4.0 1.34 */
#include <sys/feature_tests.h>
#include <sys/isa_defs.h>
#include <iso/limits_iso.h>
/*
* Include fixed width type limits as proposed by the ISO/JTC1/SC22/WG14 C
* committee's working draft for the revision of the current ISO C standard,
* ISO/IEC 9899:1990 Programming language - C. These are not currently
* required by any standard but constitute a useful, general purpose set
* of type definitions and limits which is namespace clean with respect to
* all standards.
*/
#if defined(__EXTENSIONS__) || !defined(_STRICT_STDC) || \
defined(__XOPEN_OR_POSIX)
#include <sys/int_limits.h>
#endif
#ifdef __cplusplus
extern "C" {
#endif
#if defined(__EXTENSIONS__) || !defined(_STRICT_STDC) || \
defined(__XOPEN_OR_POSIX)
#define SSIZE_MAX LONG_MAX /* max value of an "ssize_t" */
/*
* ARG_MAX is calculated as follows:
* NCARGS - space for other stuff on initial stack
* like aux vectors, saved registers, etc..
*/
#define _ARG_MAX32 1048320 /* max length of args to exec 32-bit program */
#define _ARG_MAX64 2096640 /* max length of args to exec 64-bit program */
#ifdef _LP64
#define ARG_MAX _ARG_MAX64 /* max length of arguments to exec */
#else /* _LP64 */
#define ARG_MAX _ARG_MAX32 /* max length of arguments to exec */
#endif /* _LP64 */
#ifndef MAX_CANON
#define MAX_CANON 256 /* max bytes in line for canonical processing */
#endif
#ifndef MAX_INPUT
#define MAX_INPUT 512 /* max size of a char input buffer */
#endif
#define NGROUPS_MAX 16 /* max number of groups for a user */
#ifndef PATH_MAX
#define PATH_MAX 1024 /* max # of characters in a path name */
#endif
#define SYMLINK_MAX 1024 /* max # of characters a symlink can contain */
#define PIPE_BUF 5120 /* max # bytes atomic in write to a pipe */
#ifndef TMP_MAX
#define TMP_MAX 17576 /* 26 * 26 * 26 */
#endif
/*
* POSIX conformant definitions - An implementation may define
* other symbols which reflect the actual implementation. Alternate
* definitions may not be as restrictive as the POSIX definitions.
*/
#define _POSIX_AIO_LISTIO_MAX 2
#define _POSIX_AIO_MAX 1
#define _POSIX_ARG_MAX 4096
#ifdef _XPG6
#define _POSIX_CHILD_MAX 25
#else
#define _POSIX_CHILD_MAX 6 /* POSIX.1-1990 default */
#endif
#define _POSIX_CLOCKRES_MIN 20000000
#define _POSIX_DELAYTIMER_MAX 32
#define _POSIX_LINK_MAX 8
#define _POSIX_MAX_CANON 255
#define _POSIX_MAX_INPUT 255
#define _POSIX_MQ_OPEN_MAX 8
#define _POSIX_MQ_PRIO_MAX 32
#define _POSIX_NAME_MAX 14
#ifdef _XPG6
#define _POSIX_NGROUPS_MAX 8
#define _POSIX_OPEN_MAX 20
#define _POSIX_PATH_MAX 256
#else /* POSIX.1-1990 defaults */
#define _POSIX_NGROUPS_MAX 0
#define _POSIX_OPEN_MAX 16
#define _POSIX_PATH_MAX 255
#endif
#define _POSIX_PIPE_BUF 512
#define _POSIX_RTSIG_MAX 8
#define _POSIX_SEM_NSEMS_MAX 256
#define _POSIX_SEM_VALUE_MAX 32767
#define _POSIX_SIGQUEUE_MAX 32
#define _POSIX_SSIZE_MAX 32767
#define _POSIX_STREAM_MAX 8
#define _POSIX_TIMER_MAX 32
#ifdef _XPG6
#define _POSIX_TZNAME_MAX 6
#else
#define _POSIX_TZNAME_MAX 3 /* POSIX.1-1990 default */
#endif
/* POSIX.1c conformant */
#define _POSIX_LOGIN_NAME_MAX 9
#define _POSIX_THREAD_DESTRUCTOR_ITERATIONS 4
#define _POSIX_THREAD_KEYS_MAX 128
#define _POSIX_THREAD_THREADS_MAX 64
#define _POSIX_TTY_NAME_MAX 9
/* UNIX 03 conformant */
#define _POSIX_HOST_NAME_MAX 255
#define _POSIX_RE_DUP_MAX 255
#define _POSIX_SYMLINK_MAX 255
#define _POSIX_SYMLOOP_MAX 8
/*
* POSIX.2 and XPG4-XSH4 conformant definitions
*/
#define _POSIX2_BC_BASE_MAX 99
#define _POSIX2_BC_DIM_MAX 2048
#define _POSIX2_BC_SCALE_MAX 99
#define _POSIX2_BC_STRING_MAX 1000
#define _POSIX2_COLL_WEIGHTS_MAX 2
#define _POSIX2_EXPR_NEST_MAX 32
#define _POSIX2_LINE_MAX 2048
#define _POSIX2_RE_DUP_MAX 255
/* UNIX 03 conformant */
#define _POSIX2_CHARCLASS_NAME_MAX 14
#define BC_BASE_MAX _POSIX2_BC_BASE_MAX
#define BC_DIM_MAX _POSIX2_BC_DIM_MAX
#define BC_SCALE_MAX _POSIX2_BC_SCALE_MAX
#define BC_STRING_MAX _POSIX2_BC_STRING_MAX
#define COLL_WEIGHTS_MAX 10
#define EXPR_NEST_MAX _POSIX2_EXPR_NEST_MAX
#define LINE_MAX _POSIX2_LINE_MAX
#if !defined(_XPG6)
#define RE_DUP_MAX _POSIX2_RE_DUP_MAX
#else
#define RE_DUP_MAX _POSIX_RE_DUP_MAX
#endif /* !defined(_XPG6) */
#endif /* defined(__EXTENSIONS__) || !defined(_STRICT_STDC) ... */
#if defined(__EXTENSIONS__) || \
(!defined(_STRICT_STDC) && !defined(_POSIX_C_SOURCE)) || \
defined(_XOPEN_SOURCE)
/*
* For dual definitions for PASS_MAX and sysconf.c
*/
#define _PASS_MAX_XPG 8 /* old standards PASS_MAX */
#define _PASS_MAX 256 /* modern Solaris PASS_MAX */
#if defined(_XPG3) && !defined(_XPG6)
#define PASS_MAX _PASS_MAX_XPG /* max # of characters in a password */
#else /* XPG6 or just Solaris */
#define PASS_MAX _PASS_MAX /* max # of characters in a password */
#endif /* defined(_XPG3) && !defined(_XPG6) */
#define CHARCLASS_NAME_MAX _POSIX2_CHARCLASS_NAME_MAX
#define NL_ARGMAX 9 /* max value of "digit" in calls to the */
/* NLS printf() and scanf() */
#define NL_LANGMAX 14 /* max # of bytes in a LANG name */
#define NL_MSGMAX 32767 /* max message number */
#define NL_NMAX 1 /* max # bytes in N-to-1 mapping characters */
#define NL_SETMAX 255 /* max set number */
#define NL_TEXTMAX 2048 /* max set number */
#define NZERO 20 /* default process priority */
#define WORD_BIT 32 /* # of bits in a "word" or "int" */
#if defined(_LP64)
#define LONG_BIT 64 /* # of bits in a "long" */
#else /* _ILP32 */
#define LONG_BIT 32 /* # of bits in a "long" */
#endif
/* Marked as LEGACY in SUSv2 and removed in UNIX 03 */
#ifndef _XPG6
#define DBL_DIG 15 /* digits of precision of a "double" */
#define DBL_MAX 1.7976931348623157081452E+308 /* max decimal value */
/* of a double */
#define FLT_DIG 6 /* digits of precision of a "float" */
#define FLT_MAX 3.4028234663852885981170E+38F /* max decimal value */
/* of a "float" */
#endif
/* Marked as LEGACY in SUSv1 and removed in SUSv2 */
#ifndef _XPG5
#define DBL_MIN 2.2250738585072013830903E-308 /* min decimal value */
/* of a double */
#define FLT_MIN 1.1754943508222875079688E-38F /* min decimal value */
/* of a float */
#endif
#endif /* defined(__EXTENSIONS__) || (!defined(_STRICT_STDC) ... */
#define _XOPEN_IOV_MAX 16 /* max # iovec/process with readv()/writev() */
#define _XOPEN_NAME_MAX 255 /* max # bytes in filename excluding null */
#define _XOPEN_PATH_MAX 1024 /* max # bytes in a pathname */
#define IOV_MAX _XOPEN_IOV_MAX
#if defined(__EXTENSIONS__) || \
(!defined(_STRICT_STDC) && !defined(__XOPEN_OR_POSIX))
#define FCHR_MAX 1048576 /* max size of a file in bytes */
#define PID_MAX 999999 /* max value for a process ID */
/*
* POSIX 1003.1a, section 2.9.5, table 2-5 contains [NAME_MAX] and the
* related text states:
*
* A definition of one of the values from Table 2-5 shall be omitted from the
* <limits.h> on specific implementations where the corresponding value is
* equal to or greater than the stated minimum, but where the value can vary
* depending on the file to which it is applied. The actual value supported for
* a specific pathname shall be provided by the pathconf() (5.7.1) function.
*
* This is clear that any machine supporting multiple file system types
* and/or a network can not include this define, regardless of protection
* by the _POSIX_SOURCE and _POSIX_C_SOURCE flags.
*
* #define NAME_MAX 14
*/
#define CHILD_MAX 25 /* max # of processes per user id */
#ifndef OPEN_MAX
#define OPEN_MAX 256 /* max # of files a process can have open */
#endif
#define PIPE_MAX 5120 /* max # bytes written to a pipe in a write */
#define STD_BLK 1024 /* # bytes in a physical I/O block */
#define UID_MAX 2147483647 /* max value for a user or group ID */
#define USI_MAX 4294967295 /* max decimal value of an "unsigned" */
#define SYSPID_MAX 1 /* max pid of system processes */
#ifndef SYS_NMLN /* also defined in sys/utsname.h */
#define SYS_NMLN 257 /* 4.0 size of utsname elements */
#endif
#ifndef CLK_TCK
#if !defined(_CLOCK_T) || __cplusplus >= 199711L
#define _CLOCK_T
typedef long clock_t;
#endif /* !_CLOCK_T */
extern long _sysconf(int); /* System Private interface to sysconf() */
#define CLK_TCK ((clock_t)_sysconf(3)) /* 3 is _SC_CLK_TCK */
#endif /* CLK_TCK */
#define LOGNAME_MAX 8 /* max # of characters in a login name */
#define TTYNAME_MAX 128 /* max # of characters in a tty name */
#endif /* if defined(__EXTENSIONS__) || (!defined(_STRICT_STDC) ... */
/*
* POSIX.1c Note:
* PTHREAD_STACK_MIN is also defined in <pthread.h>.
*/
#if defined(__EXTENSIONS__) || (_POSIX_C_SOURCE >= 199506L)
#include <sys/unistd.h>
#if !defined(_SIZE_T) || __cplusplus >= 199711L
#define _SIZE_T
#if defined(_LP64) || defined(_I32LPx)
typedef unsigned long size_t; /* size of something in bytes */
#else
typedef unsigned int size_t; /* (historical version) */
#endif
#endif /* _SIZE_T */
extern long _sysconf(int); /* System Private interface to sysconf() */
#define PTHREAD_STACK_MIN ((size_t)_sysconf(_SC_THREAD_STACK_MIN))
/* Added for UNIX98 conformance */
#define PTHREAD_DESTRUCTOR_ITERATIONS _POSIX_THREAD_DESTRUCTOR_ITERATIONS
#define PTHREAD_KEYS_MAX _POSIX_THREAD_KEYS_MAX
#define PTHREAD_THREADS_MAX _POSIX_THREAD_THREADS_MAX
#endif /* defined(__EXTENSIONS__) || (_POSIX_C_SOURCE >= 199506L) */
#ifdef __cplusplus
}
#endif
#endif /* _LIMITS_H */
|