1 @node System Configuration, Cryptographic Functions, System Management, Top
2 @c %MENU% Parameters describing operating system limits
3 @chapter System Configuration Parameters
5 The functions and macros listed in this chapter give information about
6 configuration parameters of the operating system---for example, capacity
7 limits, presence of optional POSIX features, and the default path for
8 executable files (@pxref{String Parameters}).
11 * General Limits:: Constants and functions that describe
12 various process-related limits that have
13 one uniform value for any given machine.
14 * System Options:: Optional POSIX features.
15 * Version Supported:: Version numbers of POSIX.1 and POSIX.2.
16 * Sysconf:: Getting specific configuration values
17 of general limits and system options.
18 * Minimums:: Minimum values for general limits.
20 * Limits for Files:: Size limitations that pertain to individual files.
21 These can vary between file systems
22 or even from file to file.
23 * Options for Files:: Optional features that some files may support.
24 * File Minimums:: Minimum values for file limits.
25 * Pathconf:: Getting the limit values for a particular file.
27 * Utility Limits:: Capacity limits of some POSIX.2 utility programs.
28 * Utility Minimums:: Minimum allowable values of those limits.
30 * String Parameters:: Getting the default search path.
34 @section General Capacity Limits
35 @cindex POSIX capacity limits
37 @cindex capacity limits, POSIX
39 The POSIX.1 and POSIX.2 standards specify a number of parameters that
40 describe capacity limitations of the system. These limits can be fixed
41 constants for a given operating system, or they can vary from machine to
42 machine. For example, some limit values may be configurable by the
43 system administrator, either at run time or by rebuilding the kernel,
44 and this should not require recompiling application programs.
47 Each of the following limit parameters has a macro that is defined in
48 @file{limits.h} only if the system has a fixed, uniform limit for the
49 parameter in question. If the system allows different file systems or
50 files to have different limits, then the macro is undefined; use
51 @code{sysconf} to find out the limit that applies at a particular time
52 on a particular machine. @xref{Sysconf}.
54 Each of these parameters also has another macro, with a name starting
55 with @samp{_POSIX}, which gives the lowest value that the limit is
56 allowed to have on @emph{any} POSIX system. @xref{Minimums}.
58 @cindex limits, program argument size
61 @deftypevr Macro int ARG_MAX
62 If defined, the unvarying maximum combined length of the @var{argv} and
63 @var{environ} arguments that can be passed to the @code{exec} functions.
66 @cindex limits, number of processes
69 @deftypevr Macro int CHILD_MAX
70 If defined, the unvarying maximum number of processes that can exist
71 with the same real user ID at any one time. In BSD and GNU, this is
72 controlled by the @code{RLIMIT_NPROC} resource limit; @pxref{Limits on
76 @cindex limits, number of open files
79 @deftypevr Macro int OPEN_MAX
80 If defined, the unvarying maximum number of files that a single process
81 can have open simultaneously. In BSD and GNU, this is controlled
82 by the @code{RLIMIT_NOFILE} resource limit; @pxref{Limits on Resources}.
87 @deftypevr Macro int STREAM_MAX
88 If defined, the unvarying maximum number of streams that a single
89 process can have open simultaneously. @xref{Opening Streams}.
92 @cindex limits, time zone name length
95 @deftypevr Macro int TZNAME_MAX
96 If defined, the unvarying maximum length of a time zone name.
97 @xref{Time Zone Functions}.
100 These limit macros are always defined in @file{limits.h}.
102 @cindex limits, number of supplementary group IDs
105 @deftypevr Macro int NGROUPS_MAX
106 The maximum number of supplementary group IDs that one process can have.
108 The value of this macro is actually a lower bound for the maximum. That
109 is, you can count on being able to have that many supplementary group
110 IDs, but a particular machine might let you have even more. You can use
111 @code{sysconf} to see whether a particular machine will let you have
112 more (@pxref{Sysconf}).
117 @deftypevr Macro int SSIZE_MAX
118 The largest value that can fit in an object of type @code{ssize_t}.
119 Effectively, this is the limit on the number of bytes that can be read
120 or written in a single operation.
122 This macro is defined in all POSIX systems because this limit is never
128 @deftypevr Macro int RE_DUP_MAX
129 The largest number of repetitions you are guaranteed is allowed in the
130 construct @samp{\@{@var{min},@var{max}\@}} in a regular expression.
132 The value of this macro is actually a lower bound for the maximum. That
133 is, you can count on being able to have that many repetitions, but a
134 particular machine might let you have even more. You can use
135 @code{sysconf} to see whether a particular machine will let you have
136 more (@pxref{Sysconf}). And even the value that @code{sysconf} tells
137 you is just a lower bound---larger values might work.
139 This macro is defined in all POSIX.2 systems, because POSIX.2 says it
140 should always be defined even if there is no specific imposed limit.
144 @section Overall System Options
145 @cindex POSIX optional features
146 @cindex optional POSIX features
148 POSIX defines certain system-specific options that not all POSIX systems
149 support. Since these options are provided in the kernel, not in the
150 library, simply using @theglibc{} does not guarantee any of these
151 features is supported; it depends on the system you are using.
154 You can test for the availability of a given option using the macros in
155 this section, together with the function @code{sysconf}. The macros are
156 defined only if you include @file{unistd.h}.
158 For the following macros, if the macro is defined in @file{unistd.h},
159 then the option is supported. Otherwise, the option may or may not be
160 supported; use @code{sysconf} to find out. @xref{Sysconf}.
164 @deftypevr Macro int _POSIX_JOB_CONTROL
165 If this symbol is defined, it indicates that the system supports job
166 control. Otherwise, the implementation behaves as if all processes
167 within a session belong to a single process group. @xref{Job Control}.
172 @deftypevr Macro int _POSIX_SAVED_IDS
173 If this symbol is defined, it indicates that the system remembers the
174 effective user and group IDs of a process before it executes an
175 executable file with the set-user-ID or set-group-ID bits set, and that
176 explicitly changing the effective user or group IDs back to these values
177 is permitted. If this option is not defined, then if a nonprivileged
178 process changes its effective user or group ID to the real user or group
179 ID of the process, it can't change it back again. @xref{Enable/Disable
183 For the following macros, if the macro is defined in @file{unistd.h},
184 then its value indicates whether the option is supported. A value of
185 @code{-1} means no, and any other value means yes. If the macro is not
186 defined, then the option may or may not be supported; use @code{sysconf}
187 to find out. @xref{Sysconf}.
191 @deftypevr Macro int _POSIX2_C_DEV
192 If this symbol is defined, it indicates that the system has the POSIX.2
193 C compiler command, @code{c89}. @Theglibc{} always defines this
194 as @code{1}, on the assumption that you would not have installed it if
195 you didn't have a C compiler.
200 @deftypevr Macro int _POSIX2_FORT_DEV
201 If this symbol is defined, it indicates that the system has the POSIX.2
202 Fortran compiler command, @code{fort77}. @Theglibc{} never
203 defines this, because we don't know what the system has.
208 @deftypevr Macro int _POSIX2_FORT_RUN
209 If this symbol is defined, it indicates that the system has the POSIX.2
210 @code{asa} command to interpret Fortran carriage control. @Theglibc{}
211 never defines this, because we don't know what the system has.
216 @deftypevr Macro int _POSIX2_LOCALEDEF
217 If this symbol is defined, it indicates that the system has the POSIX.2
218 @code{localedef} command. @Theglibc{} never defines this, because
219 we don't know what the system has.
224 @deftypevr Macro int _POSIX2_SW_DEV
225 If this symbol is defined, it indicates that the system has the POSIX.2
226 commands @code{ar}, @code{make}, and @code{strip}. @Theglibc{}
227 always defines this as @code{1}, on the assumption that you had to have
228 @code{ar} and @code{make} to install the library, and it's unlikely that
229 @code{strip} would be absent when those are present.
232 @node Version Supported
233 @section Which Version of POSIX is Supported
237 @deftypevr Macro {long int} _POSIX_VERSION
238 This constant represents the version of the POSIX.1 standard to which
239 the implementation conforms. For an implementation conforming to the
240 1995 POSIX.1 standard, the value is the integer @code{199506L}.
242 @code{_POSIX_VERSION} is always defined (in @file{unistd.h}) in any
245 @strong{Usage Note:} Don't try to test whether the system supports POSIX
246 by including @file{unistd.h} and then checking whether
247 @code{_POSIX_VERSION} is defined. On a non-POSIX system, this will
248 probably fail because there is no @file{unistd.h}. We do not know of
249 @emph{any} way you can reliably test at compilation time whether your
250 target system supports POSIX or whether @file{unistd.h} exists.
255 @deftypevr Macro {long int} _POSIX2_C_VERSION
256 This constant represents the version of the POSIX.2 standard which the
257 library and system kernel support. We don't know what value this will
258 be for the first version of the POSIX.2 standard, because the value is
259 based on the year and month in which the standard is officially adopted.
261 The value of this symbol says nothing about the utilities installed on
264 @strong{Usage Note:} You can use this macro to tell whether a POSIX.1
265 system library supports POSIX.2 as well. Any POSIX.1 system contains
266 @file{unistd.h}, so include that file and then test @code{defined
267 (_POSIX2_C_VERSION)}.
271 @section Using @code{sysconf}
273 When your system has configurable system limits, you can use the
274 @code{sysconf} function to find out the value that applies to any
275 particular machine. The function and the associated @var{parameter}
276 constants are declared in the header file @file{unistd.h}.
279 * Sysconf Definition:: Detailed specifications of @code{sysconf}.
280 * Constants for Sysconf:: The list of parameters @code{sysconf} can read.
281 * Examples of Sysconf:: How to use @code{sysconf} and the parameter
282 macros properly together.
285 @node Sysconf Definition
286 @subsection Definition of @code{sysconf}
290 @deftypefun {long int} sysconf (int @var{parameter})
291 This function is used to inquire about runtime system parameters. The
292 @var{parameter} argument should be one of the @samp{_SC_} symbols listed
295 The normal return value from @code{sysconf} is the value you requested.
296 A value of @code{-1} is returned both if the implementation does not
297 impose a limit, and in case of an error.
299 The following @code{errno} error conditions are defined for this function:
303 The value of the @var{parameter} is invalid.
307 @node Constants for Sysconf
308 @subsection Constants for @code{sysconf} Parameters
310 Here are the symbolic constants for use as the @var{parameter} argument
311 to @code{sysconf}. The values are all integer constants (more
312 specifically, enumeration type values).
318 Inquire about the parameter corresponding to @code{ARG_MAX}.
323 Inquire about the parameter corresponding to @code{CHILD_MAX}.
328 Inquire about the parameter corresponding to @code{OPEN_MAX}.
333 Inquire about the parameter corresponding to @code{STREAM_MAX}.
338 Inquire about the parameter corresponding to @code{TZNAME_MAX}.
342 @item _SC_NGROUPS_MAX
343 Inquire about the parameter corresponding to @code{NGROUPS_MAX}.
347 @item _SC_JOB_CONTROL
348 Inquire about the parameter corresponding to @code{_POSIX_JOB_CONTROL}.
353 Inquire about the parameter corresponding to @code{_POSIX_SAVED_IDS}.
358 Inquire about the parameter corresponding to @code{_POSIX_VERSION}.
363 Inquire about the number of clock ticks per second; @pxref{CPU Time}.
364 The corresponding parameter @code{CLK_TCK} is obsolete.
368 @item _SC_CHARCLASS_NAME_MAX
369 Inquire about the parameter corresponding to maximal length allowed for
370 a character class name in an extended locale specification. These
371 extensions are not yet standardized and so this option is not standardized
376 @item _SC_REALTIME_SIGNALS
377 Inquire about the parameter corresponding to @code{_POSIX_REALTIME_SIGNALS}.
381 @item _SC_PRIORITY_SCHEDULING
382 Inquire about the parameter corresponding to @code{_POSIX_PRIORITY_SCHEDULING}.
387 Inquire about the parameter corresponding to @code{_POSIX_TIMERS}.
391 @item _SC_ASYNCHRONOUS_IO
392 Inquire about the parameter corresponding to @code{_POSIX_ASYNCHRONOUS_IO}.
396 @item _SC_PRIORITIZED_IO
397 Inquire about the parameter corresponding to @code{_POSIX_PRIORITIZED_IO}.
401 @item _SC_SYNCHRONIZED_IO
402 Inquire about the parameter corresponding to @code{_POSIX_SYNCHRONIZED_IO}.
407 Inquire about the parameter corresponding to @code{_POSIX_FSYNC}.
411 @item _SC_MAPPED_FILES
412 Inquire about the parameter corresponding to @code{_POSIX_MAPPED_FILES}.
417 Inquire about the parameter corresponding to @code{_POSIX_MEMLOCK}.
421 @item _SC_MEMLOCK_RANGE
422 Inquire about the parameter corresponding to @code{_POSIX_MEMLOCK_RANGE}.
426 @item _SC_MEMORY_PROTECTION
427 Inquire about the parameter corresponding to @code{_POSIX_MEMORY_PROTECTION}.
431 @item _SC_MESSAGE_PASSING
432 Inquire about the parameter corresponding to @code{_POSIX_MESSAGE_PASSING}.
437 Inquire about the parameter corresponding to @code{_POSIX_SEMAPHORES}.
441 @item _SC_SHARED_MEMORY_OBJECTS
442 Inquire about the parameter corresponding to@*
443 @code{_POSIX_SHARED_MEMORY_OBJECTS}.
447 @item _SC_AIO_LISTIO_MAX
448 Inquire about the parameter corresponding to @code{_POSIX_AIO_LISTIO_MAX}.
453 Inquire about the parameter corresponding to @code{_POSIX_AIO_MAX}.
457 @item _SC_AIO_PRIO_DELTA_MAX
458 Inquire the value by which a process can decrease its asynchronous I/O
459 priority level from its own scheduling priority. This corresponds to the
460 run-time invariant value @code{AIO_PRIO_DELTA_MAX}.
464 @item _SC_DELAYTIMER_MAX
465 Inquire about the parameter corresponding to @code{_POSIX_DELAYTIMER_MAX}.
469 @item _SC_MQ_OPEN_MAX
470 Inquire about the parameter corresponding to @code{_POSIX_MQ_OPEN_MAX}.
474 @item _SC_MQ_PRIO_MAX
475 Inquire about the parameter corresponding to @code{_POSIX_MQ_PRIO_MAX}.
480 Inquire about the parameter corresponding to @code{_POSIX_RTSIG_MAX}.
484 @item _SC_SEM_NSEMS_MAX
485 Inquire about the parameter corresponding to @code{_POSIX_SEM_NSEMS_MAX}.
489 @item _SC_SEM_VALUE_MAX
490 Inquire about the parameter corresponding to @code{_POSIX_SEM_VALUE_MAX}.
494 @item _SC_SIGQUEUE_MAX
495 Inquire about the parameter corresponding to @code{_POSIX_SIGQUEUE_MAX}.
500 Inquire about the parameter corresponding to @code{_POSIX_TIMER_MAX}.
505 Inquire about the parameter corresponding to @code{_POSIX_PII}.
510 Inquire about the parameter corresponding to @code{_POSIX_PII_XTI}.
515 Inquire about the parameter corresponding to @code{_POSIX_PII_SOCKET}.
519 @item _SC_PII_INTERNET
520 Inquire about the parameter corresponding to @code{_POSIX_PII_INTERNET}.
525 Inquire about the parameter corresponding to @code{_POSIX_PII_OSI}.
530 Inquire about the parameter corresponding to @code{_POSIX_SELECT}.
535 Inquire about the parameter corresponding to @code{_POSIX_UIO_MAXIOV}.
539 @item _SC_PII_INTERNET_STREAM
540 Inquire about the parameter corresponding to @code{_POSIX_PII_INTERNET_STREAM}.
544 @item _SC_PII_INTERNET_DGRAM
545 Inquire about the parameter corresponding to @code{_POSIX_PII_INTERNET_DGRAM}.
549 @item _SC_PII_OSI_COTS
550 Inquire about the parameter corresponding to @code{_POSIX_PII_OSI_COTS}.
554 @item _SC_PII_OSI_CLTS
555 Inquire about the parameter corresponding to @code{_POSIX_PII_OSI_CLTS}.
560 Inquire about the parameter corresponding to @code{_POSIX_PII_OSI_M}.
565 Inquire the value of the value associated with the @code{T_IOV_MAX}
571 Inquire about the parameter corresponding to @code{_POSIX_THREADS}.
575 @item _SC_THREAD_SAFE_FUNCTIONS
576 Inquire about the parameter corresponding to@*
577 @code{_POSIX_THREAD_SAFE_FUNCTIONS}.
581 @item _SC_GETGR_R_SIZE_MAX
582 Inquire about the parameter corresponding to @code{_POSIX_GETGR_R_SIZE_MAX}.
586 @item _SC_GETPW_R_SIZE_MAX
587 Inquire about the parameter corresponding to @code{_POSIX_GETPW_R_SIZE_MAX}.
591 @item _SC_LOGIN_NAME_MAX
592 Inquire about the parameter corresponding to @code{_POSIX_LOGIN_NAME_MAX}.
596 @item _SC_TTY_NAME_MAX
597 Inquire about the parameter corresponding to @code{_POSIX_TTY_NAME_MAX}.
601 @item _SC_THREAD_DESTRUCTOR_ITERATIONS
602 Inquire about the parameter corresponding to
603 @code{_POSIX_THREAD_DESTRUCTOR_ITERATIONS}.
607 @item _SC_THREAD_KEYS_MAX
608 Inquire about the parameter corresponding to @code{_POSIX_THREAD_KEYS_MAX}.
612 @item _SC_THREAD_STACK_MIN
613 Inquire about the parameter corresponding to @code{_POSIX_THREAD_STACK_MIN}.
617 @item _SC_THREAD_THREADS_MAX
618 Inquire about the parameter corresponding to @code{_POSIX_THREAD_THREADS_MAX}.
622 @item _SC_THREAD_ATTR_STACKADDR
623 Inquire about the parameter corresponding to@*a
624 @code{_POSIX_THREAD_ATTR_STACKADDR}.
628 @item _SC_THREAD_ATTR_STACKSIZE
629 Inquire about the parameter corresponding to@*
630 @code{_POSIX_THREAD_ATTR_STACKSIZE}.
634 @item _SC_THREAD_PRIORITY_SCHEDULING
635 Inquire about the parameter corresponding to
636 @code{_POSIX_THREAD_PRIORITY_SCHEDULING}.
640 @item _SC_THREAD_PRIO_INHERIT
641 Inquire about the parameter corresponding to @code{_POSIX_THREAD_PRIO_INHERIT}.
645 @item _SC_THREAD_PRIO_PROTECT
646 Inquire about the parameter corresponding to @code{_POSIX_THREAD_PRIO_PROTECT}.
650 @item _SC_THREAD_PROCESS_SHARED
651 Inquire about the parameter corresponding to
652 @code{_POSIX_THREAD_PROCESS_SHARED}.
657 Inquire about whether the system has the POSIX.2 C compiler command,
663 Inquire about whether the system has the POSIX.2 Fortran compiler
664 command, @code{fort77}.
669 Inquire about whether the system has the POSIX.2 @code{asa} command to
670 interpret Fortran carriage control.
674 @item _SC_2_LOCALEDEF
675 Inquire about whether the system has the POSIX.2 @code{localedef}
681 Inquire about whether the system has the POSIX.2 commands @code{ar},
682 @code{make}, and @code{strip}.
686 @item _SC_BC_BASE_MAX
687 Inquire about the maximum value of @code{obase} in the @code{bc}
693 Inquire about the maximum size of an array in the @code{bc}
698 @item _SC_BC_SCALE_MAX
699 Inquire about the maximum value of @code{scale} in the @code{bc}
704 @item _SC_BC_STRING_MAX
705 Inquire about the maximum size of a string constant in the
710 @item _SC_COLL_WEIGHTS_MAX
711 Inquire about the maximum number of weights that can necessarily
712 be used in defining the collating sequence for a locale.
716 @item _SC_EXPR_NEST_MAX
717 Inquire about the maximum number of expressions nested within
718 parentheses when using the @code{expr} utility.
723 Inquire about the maximum size of a text line that the POSIX.2 text
724 utilities can handle.
728 @item _SC_EQUIV_CLASS_MAX
729 Inquire about the maximum number of weights that can be assigned to an
730 entry of the @code{LC_COLLATE} category @samp{order} keyword in a locale
731 definition. @Theglibc{} does not presently support locale
737 Inquire about the version number of POSIX.1 that the library and kernel
743 Inquire about the version number of POSIX.2 that the system utilities
749 Inquire about the virtual memory page size of the machine.
750 @code{getpagesize} returns the same value (@pxref{Query Memory Parameters}).
754 @item _SC_NPROCESSORS_CONF
755 Inquire about the number of configured processors.
759 @item _SC_NPROCESSORS_ONLN
760 Inquire about the number of processors online.
765 Inquire about the number of physical pages in the system.
769 @item _SC_AVPHYS_PAGES
770 Inquire about the number of available physical pages in the system.
775 Inquire about the number of functions which can be registered as termination
776 functions for @code{atexit}; @pxref{Cleanups on Exit}.
780 @item _SC_XOPEN_VERSION
781 Inquire about the parameter corresponding to @code{_XOPEN_VERSION}.
785 @item _SC_XOPEN_XCU_VERSION
786 Inquire about the parameter corresponding to @code{_XOPEN_XCU_VERSION}.
791 Inquire about the parameter corresponding to @code{_XOPEN_UNIX}.
795 @item _SC_XOPEN_REALTIME
796 Inquire about the parameter corresponding to @code{_XOPEN_REALTIME}.
800 @item _SC_XOPEN_REALTIME_THREADS
801 Inquire about the parameter corresponding to @code{_XOPEN_REALTIME_THREADS}.
805 @item _SC_XOPEN_LEGACY
806 Inquire about the parameter corresponding to @code{_XOPEN_LEGACY}.
810 @item _SC_XOPEN_CRYPT
811 Inquire about the parameter corresponding to @code{_XOPEN_CRYPT}.
815 @item _SC_XOPEN_ENH_I18N
816 Inquire about the parameter corresponding to @code{_XOPEN_ENH_I18N}.
821 Inquire about the parameter corresponding to @code{_XOPEN_SHM}.
826 Inquire about the parameter corresponding to @code{_XOPEN_XPG2}.
831 Inquire about the parameter corresponding to @code{_XOPEN_XPG3}.
836 Inquire about the parameter corresponding to @code{_XOPEN_XPG4}.
841 Inquire about the number of bits in a variable of type @code{char}.
846 Inquire about the maximum value which can be stored in a variable of type
852 Inquire about the minimum value which can be stored in a variable of type
858 Inquire about the maximum value which can be stored in a variable of type
864 Inquire about the minimum value which can be stored in a variable of type
870 Inquire about the number of bits in a variable of type @code{long int}.
875 Inquire about the number of bits in a variable of a register word.
880 Inquire the maximum length of a multi-byte representation of a wide
886 Inquire about the value used to internally represent the zero priority level for
887 the process execution.
892 Inquire about the maximum value which can be stored in a variable of type
898 Inquire about the maximum value which can be stored in a variable of type
904 Inquire about the minimum value which can be stored in a variable of type
910 Inquire about the maximum value which can be stored in a variable of type
916 Inquire about the minimum value which can be stored in a variable of type
922 Inquire about the maximum value which can be stored in a variable of type
923 @code{unsigned char}.
928 Inquire about the maximum value which can be stored in a variable of type
934 Inquire about the maximum value which can be stored in a variable of type
935 @code{unsigned long int}.
940 Inquire about the maximum value which can be stored in a variable of type
941 @code{unsigned short int}.
946 Inquire about the parameter corresponding to @code{NL_ARGMAX}.
951 Inquire about the parameter corresponding to @code{NL_LANGMAX}.
956 Inquire about the parameter corresponding to @code{NL_MSGMAX}.
961 Inquire about the parameter corresponding to @code{NL_NMAX}.
966 Inquire about the parameter corresponding to @code{NL_SETMAX}.
971 Inquire about the parameter corresponding to @code{NL_TEXTMAX}.
974 @node Examples of Sysconf
975 @subsection Examples of @code{sysconf}
977 We recommend that you first test for a macro definition for the
978 parameter you are interested in, and call @code{sysconf} only if the
979 macro is not defined. For example, here is how to test whether job
980 control is supported:
985 have_job_control (void)
987 #ifdef _POSIX_JOB_CONTROL
990 int value = sysconf (_SC_JOB_CONTROL);
992 /* @r{If the system is that badly wedged,}
993 @r{there's no use trying to go on.} */
994 fatal (strerror (errno));
1001 Here is how to get the value of a numeric limit:
1010 int value = sysconf (_SC_CHILD_MAX);
1012 fatal (strerror (errno));
1019 @section Minimum Values for General Capacity Limits
1021 Here are the names for the POSIX minimum upper bounds for the system
1022 limit parameters. The significance of these values is that you can
1023 safely push to these limits without checking whether the particular
1024 system you are using can go that far.
1029 @item _POSIX_AIO_LISTIO_MAX
1030 The most restrictive limit permitted by POSIX for the maximum number of
1031 I/O operations that can be specified in a list I/O call. The value of
1032 this constant is @code{2}; thus you can add up to two new entries
1033 of the list of outstanding operations.
1037 @item _POSIX_AIO_MAX
1038 The most restrictive limit permitted by POSIX for the maximum number of
1039 outstanding asynchronous I/O operations. The value of this constant is
1040 @code{1}. So you cannot expect that you can issue more than one
1041 operation and immediately continue with the normal work, receiving the
1042 notifications asynchronously.
1046 @item _POSIX_ARG_MAX
1047 The value of this macro is the most restrictive limit permitted by POSIX
1048 for the maximum combined length of the @var{argv} and @var{environ}
1049 arguments that can be passed to the @code{exec} functions.
1050 Its value is @code{4096}.
1054 @item _POSIX_CHILD_MAX
1055 The value of this macro is the most restrictive limit permitted by POSIX
1056 for the maximum number of simultaneous processes per real user ID. Its
1061 @item _POSIX_NGROUPS_MAX
1062 The value of this macro is the most restrictive limit permitted by POSIX
1063 for the maximum number of supplementary group IDs per process. Its
1068 @item _POSIX_OPEN_MAX
1069 The value of this macro is the most restrictive limit permitted by POSIX
1070 for the maximum number of files that a single process can have open
1071 simultaneously. Its value is @code{16}.
1075 @item _POSIX_SSIZE_MAX
1076 The value of this macro is the most restrictive limit permitted by POSIX
1077 for the maximum value that can be stored in an object of type
1078 @code{ssize_t}. Its value is @code{32767}.
1082 @item _POSIX_STREAM_MAX
1083 The value of this macro is the most restrictive limit permitted by POSIX
1084 for the maximum number of streams that a single process can have open
1085 simultaneously. Its value is @code{8}.
1089 @item _POSIX_TZNAME_MAX
1090 The value of this macro is the most restrictive limit permitted by POSIX
1091 for the maximum length of a time zone name. Its value is @code{3}.
1095 @item _POSIX2_RE_DUP_MAX
1096 The value of this macro is the most restrictive limit permitted by POSIX
1097 for the numbers used in the @samp{\@{@var{min},@var{max}\@}} construct
1098 in a regular expression. Its value is @code{255}.
1101 @node Limits for Files
1102 @section Limits on File System Capacity
1104 The POSIX.1 standard specifies a number of parameters that describe the
1105 limitations of the file system. It's possible for the system to have a
1106 fixed, uniform limit for a parameter, but this isn't the usual case. On
1107 most systems, it's possible for different file systems (and, for some
1108 parameters, even different files) to have different maximum limits. For
1109 example, this is very likely if you use NFS to mount some of the file
1110 systems from other machines.
1113 Each of the following macros is defined in @file{limits.h} only if the
1114 system has a fixed, uniform limit for the parameter in question. If the
1115 system allows different file systems or files to have different limits,
1116 then the macro is undefined; use @code{pathconf} or @code{fpathconf} to
1117 find out the limit that applies to a particular file. @xref{Pathconf}.
1119 Each parameter also has another macro, with a name starting with
1120 @samp{_POSIX}, which gives the lowest value that the limit is allowed to
1121 have on @emph{any} POSIX system. @xref{File Minimums}.
1123 @cindex limits, link count of files
1126 @deftypevr Macro int LINK_MAX
1127 The uniform system limit (if any) for the number of names for a given
1128 file. @xref{Hard Links}.
1131 @cindex limits, terminal input queue
1134 @deftypevr Macro int MAX_CANON
1135 The uniform system limit (if any) for the amount of text in a line of
1136 input when input editing is enabled. @xref{Canonical or Not}.
1141 @deftypevr Macro int MAX_INPUT
1142 The uniform system limit (if any) for the total number of characters
1143 typed ahead as input. @xref{I/O Queues}.
1146 @cindex limits, file name length
1149 @deftypevr Macro int NAME_MAX
1150 The uniform system limit (if any) for the length of a file name component.
1155 @deftypevr Macro int PATH_MAX
1156 The uniform system limit (if any) for the length of an entire file name (that
1157 is, the argument given to system calls such as @code{open}).
1160 @cindex limits, pipe buffer size
1163 @deftypevr Macro int PIPE_BUF
1164 The uniform system limit (if any) for the number of bytes that can be
1165 written atomically to a pipe. If multiple processes are writing to the
1166 same pipe simultaneously, output from different processes might be
1167 interleaved in chunks of this size. @xref{Pipes and FIFOs}.
1170 These are alternative macro names for some of the same information.
1174 @deftypevr Macro int MAXNAMLEN
1175 This is the BSD name for @code{NAME_MAX}. It is defined in
1181 @deftypevr Macro int FILENAME_MAX
1182 The value of this macro is an integer constant expression that
1183 represents the maximum length of a file name string. It is defined in
1186 Unlike @code{PATH_MAX}, this macro is defined even if there is no actual
1187 limit imposed. In such a case, its value is typically a very large
1188 number. @strong{This is always the case on @gnuhurdsystems{}.}
1190 @strong{Usage Note:} Don't use @code{FILENAME_MAX} as the size of an
1191 array in which to store a file name! You can't possibly make an array
1192 that big! Use dynamic allocation (@pxref{Memory Allocation}) instead.
1195 @node Options for Files
1196 @section Optional Features in File Support
1198 POSIX defines certain system-specific options in the system calls for
1199 operating on files. Some systems support these options and others do
1200 not. Since these options are provided in the kernel, not in the
1201 library, simply using @theglibc{} does not guarantee that any of these
1202 features is supported; it depends on the system you are using. They can
1203 also vary between file systems on a single machine.
1206 This section describes the macros you can test to determine whether a
1207 particular option is supported on your machine. If a given macro is
1208 defined in @file{unistd.h}, then its value says whether the
1209 corresponding feature is supported. (A value of @code{-1} indicates no;
1210 any other value indicates yes.) If the macro is undefined, it means
1211 particular files may or may not support the feature.
1213 Since all the machines that support @theglibc{} also support NFS,
1214 one can never make a general statement about whether all file systems
1215 support the @code{_POSIX_CHOWN_RESTRICTED} and @code{_POSIX_NO_TRUNC}
1216 features. So these names are never defined as macros in @theglibc{}.
1220 @deftypevr Macro int _POSIX_CHOWN_RESTRICTED
1221 If this option is in effect, the @code{chown} function is restricted so
1222 that the only changes permitted to nonprivileged processes is to change
1223 the group owner of a file to either be the effective group ID of the
1224 process, or one of its supplementary group IDs. @xref{File Owner}.
1229 @deftypevr Macro int _POSIX_NO_TRUNC
1230 If this option is in effect, file name components longer than
1231 @code{NAME_MAX} generate an @code{ENAMETOOLONG} error. Otherwise, file
1232 name components that are too long are silently truncated.
1237 @deftypevr Macro {unsigned char} _POSIX_VDISABLE
1238 This option is only meaningful for files that are terminal devices.
1239 If it is enabled, then handling for special control characters can
1240 be disabled individually. @xref{Special Characters}.
1244 If one of these macros is undefined, that means that the option might be
1245 in effect for some files and not for others. To inquire about a
1246 particular file, call @code{pathconf} or @code{fpathconf}.
1250 @section Minimum Values for File System Limits
1252 Here are the names for the POSIX minimum upper bounds for some of the
1253 above parameters. The significance of these values is that you can
1254 safely push to these limits without checking whether the particular
1255 system you are using can go that far. In most cases @gnusystems{} do not
1256 have these strict limitations. The actual limit should be requested if
1262 @item _POSIX_LINK_MAX
1263 The most restrictive limit permitted by POSIX for the maximum value of a
1264 file's link count. The value of this constant is @code{8}; thus, you
1265 can always make up to eight names for a file without running into a
1270 @item _POSIX_MAX_CANON
1271 The most restrictive limit permitted by POSIX for the maximum number of
1272 bytes in a canonical input line from a terminal device. The value of
1273 this constant is @code{255}.
1277 @item _POSIX_MAX_INPUT
1278 The most restrictive limit permitted by POSIX for the maximum number of
1279 bytes in a terminal device input queue (or typeahead buffer).
1280 @xref{Input Modes}. The value of this constant is @code{255}.
1284 @item _POSIX_NAME_MAX
1285 The most restrictive limit permitted by POSIX for the maximum number of
1286 bytes in a file name component. The value of this constant is
1291 @item _POSIX_PATH_MAX
1292 The most restrictive limit permitted by POSIX for the maximum number of
1293 bytes in a file name. The value of this constant is @code{256}.
1297 @item _POSIX_PIPE_BUF
1298 The most restrictive limit permitted by POSIX for the maximum number of
1299 bytes that can be written atomically to a pipe. The value of this
1300 constant is @code{512}.
1305 Maximum number of bytes in a symbolic link.
1309 @item POSIX_REC_INCR_XFER_SIZE
1310 Recommended increment for file transfer sizes between the
1311 @code{POSIX_REC_MIN_XFER_SIZE} and @code{POSIX_REC_MAX_XFER_SIZE}
1316 @item POSIX_REC_MAX_XFER_SIZE
1317 Maximum recommended file transfer size.
1321 @item POSIX_REC_MIN_XFER_SIZE
1322 Minimum recommended file transfer size.
1326 @item POSIX_REC_XFER_ALIGN
1327 Recommended file transfer buffer alignment.
1331 @section Using @code{pathconf}
1333 When your machine allows different files to have different values for a
1334 file system parameter, you can use the functions in this section to find
1335 out the value that applies to any particular file.
1337 These functions and the associated constants for the @var{parameter}
1338 argument are declared in the header file @file{unistd.h}.
1342 @deftypefun {long int} pathconf (const char *@var{filename}, int @var{parameter})
1343 This function is used to inquire about the limits that apply to
1344 the file named @var{filename}.
1346 The @var{parameter} argument should be one of the @samp{_PC_} constants
1349 The normal return value from @code{pathconf} is the value you requested.
1350 A value of @code{-1} is returned both if the implementation does not
1351 impose a limit, and in case of an error. In the former case,
1352 @code{errno} is not set, while in the latter case, @code{errno} is set
1353 to indicate the cause of the problem. So the only way to use this
1354 function robustly is to store @code{0} into @code{errno} just before
1357 Besides the usual file name errors (@pxref{File Name Errors}),
1358 the following error condition is defined for this function:
1362 The value of @var{parameter} is invalid, or the implementation doesn't
1363 support the @var{parameter} for the specific file.
1369 @deftypefun {long int} fpathconf (int @var{filedes}, int @var{parameter})
1370 This is just like @code{pathconf} except that an open file descriptor
1371 is used to specify the file for which information is requested, instead
1374 The following @code{errno} error conditions are defined for this function:
1378 The @var{filedes} argument is not a valid file descriptor.
1381 The value of @var{parameter} is invalid, or the implementation doesn't
1382 support the @var{parameter} for the specific file.
1386 Here are the symbolic constants that you can use as the @var{parameter}
1387 argument to @code{pathconf} and @code{fpathconf}. The values are all
1394 Inquire about the value of @code{LINK_MAX}.
1399 Inquire about the value of @code{MAX_CANON}.
1404 Inquire about the value of @code{MAX_INPUT}.
1409 Inquire about the value of @code{NAME_MAX}.
1414 Inquire about the value of @code{PATH_MAX}.
1419 Inquire about the value of @code{PIPE_BUF}.
1423 @item _PC_CHOWN_RESTRICTED
1424 Inquire about the value of @code{_POSIX_CHOWN_RESTRICTED}.
1429 Inquire about the value of @code{_POSIX_NO_TRUNC}.
1434 Inquire about the value of @code{_POSIX_VDISABLE}.
1439 Inquire about the value of @code{_POSIX_SYNC_IO}.
1444 Inquire about the value of @code{_POSIX_ASYNC_IO}.
1449 Inquire about the value of @code{_POSIX_PRIO_IO}.
1453 @item _PC_FILESIZEBITS
1454 Inquire about the availability of large files on the filesystem.
1458 @item _PC_REC_INCR_XFER_SIZE
1459 Inquire about the value of @code{POSIX_REC_INCR_XFER_SIZE}.
1463 @item _PC_REC_MAX_XFER_SIZE
1464 Inquire about the value of @code{POSIX_REC_MAX_XFER_SIZE}.
1468 @item _PC_REC_MIN_XFER_SIZE
1469 Inquire about the value of @code{POSIX_REC_MIN_XFER_SIZE}.
1473 @item _PC_REC_XFER_ALIGN
1474 Inquire about the value of @code{POSIX_REC_XFER_ALIGN}.
1477 @node Utility Limits
1478 @section Utility Program Capacity Limits
1480 The POSIX.2 standard specifies certain system limits that you can access
1481 through @code{sysconf} that apply to utility behavior rather than the
1482 behavior of the library or the operating system.
1484 @Theglibc{} defines macros for these limits, and @code{sysconf}
1485 returns values for them if you ask; but these values convey no
1486 meaningful information. They are simply the smallest values that
1491 @deftypevr Macro int BC_BASE_MAX
1492 The largest value of @code{obase} that the @code{bc} utility is
1493 guaranteed to support.
1498 @deftypevr Macro int BC_DIM_MAX
1499 The largest number of elements in one array that the @code{bc} utility
1500 is guaranteed to support.
1505 @deftypevr Macro int BC_SCALE_MAX
1506 The largest value of @code{scale} that the @code{bc} utility is
1507 guaranteed to support.
1512 @deftypevr Macro int BC_STRING_MAX
1513 The largest number of characters in one string constant that the
1514 @code{bc} utility is guaranteed to support.
1519 @deftypevr Macro int COLL_WEIGHTS_MAX
1520 The largest number of weights that can necessarily be used in defining
1521 the collating sequence for a locale.
1526 @deftypevr Macro int EXPR_NEST_MAX
1527 The maximum number of expressions that can be nested within parenthesis
1528 by the @code{expr} utility.
1533 @deftypevr Macro int LINE_MAX
1534 The largest text line that the text-oriented POSIX.2 utilities can
1535 support. (If you are using the GNU versions of these utilities, then
1536 there is no actual limit except that imposed by the available virtual
1537 memory, but there is no way that the library can tell you this.)
1542 @deftypevr Macro int EQUIV_CLASS_MAX
1543 The maximum number of weights that can be assigned to an entry of the
1544 @code{LC_COLLATE} category @samp{order} keyword in a locale definition.
1545 @Theglibc{} does not presently support locale definitions.
1548 @node Utility Minimums
1549 @section Minimum Values for Utility Limits
1554 @item _POSIX2_BC_BASE_MAX
1555 The most restrictive limit permitted by POSIX.2 for the maximum value of
1556 @code{obase} in the @code{bc} utility. Its value is @code{99}.
1560 @item _POSIX2_BC_DIM_MAX
1561 The most restrictive limit permitted by POSIX.2 for the maximum size of
1562 an array in the @code{bc} utility. Its value is @code{2048}.
1566 @item _POSIX2_BC_SCALE_MAX
1567 The most restrictive limit permitted by POSIX.2 for the maximum value of
1568 @code{scale} in the @code{bc} utility. Its value is @code{99}.
1572 @item _POSIX2_BC_STRING_MAX
1573 The most restrictive limit permitted by POSIX.2 for the maximum size of
1574 a string constant in the @code{bc} utility. Its value is @code{1000}.
1578 @item _POSIX2_COLL_WEIGHTS_MAX
1579 The most restrictive limit permitted by POSIX.2 for the maximum number
1580 of weights that can necessarily be used in defining the collating
1581 sequence for a locale. Its value is @code{2}.
1585 @item _POSIX2_EXPR_NEST_MAX
1586 The most restrictive limit permitted by POSIX.2 for the maximum number
1587 of expressions nested within parenthesis when using the @code{expr} utility.
1588 Its value is @code{32}.
1592 @item _POSIX2_LINE_MAX
1593 The most restrictive limit permitted by POSIX.2 for the maximum size of
1594 a text line that the text utilities can handle. Its value is
1599 @item _POSIX2_EQUIV_CLASS_MAX
1600 The most restrictive limit permitted by POSIX.2 for the maximum number
1601 of weights that can be assigned to an entry of the @code{LC_COLLATE}
1602 category @samp{order} keyword in a locale definition. Its value is
1603 @code{2}. @Theglibc{} does not presently support locale
1607 @node String Parameters
1608 @section String-Valued Parameters
1610 POSIX.2 defines a way to get string-valued parameters from the operating
1611 system with the function @code{confstr}:
1615 @deftypefun size_t confstr (int @var{parameter}, char *@var{buf}, size_t @var{len})
1616 This function reads the value of a string-valued system parameter,
1617 storing the string into @var{len} bytes of memory space starting at
1618 @var{buf}. The @var{parameter} argument should be one of the
1619 @samp{_CS_} symbols listed below.
1621 The normal return value from @code{confstr} is the length of the string
1622 value that you asked for. If you supply a null pointer for @var{buf},
1623 then @code{confstr} does not try to store the string; it just returns
1624 its length. A value of @code{0} indicates an error.
1626 If the string you asked for is too long for the buffer (that is, longer
1627 than @code{@var{len} - 1}), then @code{confstr} stores just that much
1628 (leaving room for the terminating null character). You can tell that
1629 this has happened because @code{confstr} returns a value greater than or
1632 The following @code{errno} error conditions are defined for this function:
1636 The value of the @var{parameter} is invalid.
1640 Currently there is just one parameter you can read with @code{confstr}:
1646 This parameter's value is the recommended default path for searching for
1647 executable files. This is the path that a user has by default just
1652 @item _CS_LFS_CFLAGS
1653 The returned string specifies which additional flags must be given to
1654 the C compiler if a source is compiled using the
1655 @code{_LARGEFILE_SOURCE} feature select macro; @pxref{Feature Test Macros}.
1659 @item _CS_LFS_LDFLAGS
1660 The returned string specifies which additional flags must be given to
1661 the linker if a source is compiled using the
1662 @code{_LARGEFILE_SOURCE} feature select macro; @pxref{Feature Test Macros}.
1667 The returned string specifies which additional libraries must be linked
1668 to the application if a source is compiled using the
1669 @code{_LARGEFILE_SOURCE} feature select macro; @pxref{Feature Test Macros}.
1673 @item _CS_LFS_LINTFLAGS
1674 The returned string specifies which additional flags must be given to
1675 the lint tool if a source is compiled using the
1676 @code{_LARGEFILE_SOURCE} feature select macro; @pxref{Feature Test Macros}.
1680 @item _CS_LFS64_CFLAGS
1681 The returned string specifies which additional flags must be given to
1682 the C compiler if a source is compiled using the
1683 @code{_LARGEFILE64_SOURCE} feature select macro; @pxref{Feature Test Macros}.
1687 @item _CS_LFS64_LDFLAGS
1688 The returned string specifies which additional flags must be given to
1689 the linker if a source is compiled using the
1690 @code{_LARGEFILE64_SOURCE} feature select macro; @pxref{Feature Test Macros}.
1694 @item _CS_LFS64_LIBS
1695 The returned string specifies which additional libraries must be linked
1696 to the application if a source is compiled using the
1697 @code{_LARGEFILE64_SOURCE} feature select macro; @pxref{Feature Test Macros}.
1701 @item _CS_LFS64_LINTFLAGS
1702 The returned string specifies which additional flags must be given to
1703 the lint tool if a source is compiled using the
1704 @code{_LARGEFILE64_SOURCE} feature select macro; @pxref{Feature Test Macros}.
1707 The way to use @code{confstr} without any arbitrary limit on string size
1708 is to call it twice: first call it to get the length, allocate the
1709 buffer accordingly, and then call @code{confstr} again to fill the
1715 get_default_path (void)
1717 size_t len = confstr (_CS_PATH, NULL, 0);
1718 char *buffer = (char *) xmalloc (len);
1720 if (confstr (_CS_PATH, buf, len + 1) == 0)