2 .\" The Regents of the University of California. All rights reserved.
4 .\" Redistribution and use in source and binary forms, with or without
5 .\" modification, are permitted provided that the following conditions
7 .\" 1. Redistributions of source code must retain the above copyright
8 .\" notice, this list of conditions and the following disclaimer.
9 .\" 2. Redistributions in binary form must reproduce the above copyright
10 .\" notice, this list of conditions and the following disclaimer in the
11 .\" documentation and/or other materials provided with the distribution.
12 .\" 3. All advertising materials mentioning features or use of this software
13 .\" must display the following acknowledgement:
14 .\" This product includes software developed by the University of
15 .\" California, Berkeley and its contributors.
16 .\" 4. Neither the name of the University nor the names of its contributors
17 .\" may be used to endorse or promote products derived from this software
18 .\" without specific prior written permission.
20 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
21 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23 .\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
24 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 .\" @(#)sysconf.3 8.3 (Berkeley) 4/19/94
33 .\" $FreeBSD: src/lib/libc/gen/sysconf.3,v 1.20 2003/12/23 18:42:55 trhodes Exp $
40 .Nd get configurable system variables
46 .Fn sysconf "int name"
48 This interface is defined by
50 A far more complete interface is available using
55 function provides a method for applications to determine the current
56 value of a configurable system limit or option variable.
59 argument specifies the system variable to be queried.
60 Symbolic constants for each name value are found in the include file
62 Shell programmers who need access to these parameters should use the
66 The available values are as follows:
71 The maximum bytes of argument to
74 The maximum number of simultaneous processes per user id.
76 The frequency of the statistics clock in ticks per second.
78 The maximum number of elements in the I/O vector used by
84 .It Li _SC_NGROUPS_MAX
85 The maximum number of supplemental groups.
86 .It Li _SC_NPROCESSORS_CONF
87 The number of processors configured.
88 .It Li _SC_NPROCESSORS_ONLN
89 The number of processors currently online.
91 The maximum number of open files per user id.
93 The minimum maximum number of streams that a process may have open
96 The minimum maximum number of types supported for the name of a
98 .It Li _SC_JOB_CONTROL
99 Return 1 if job control is available on this system, otherwise \-1.
101 Returns 1 if saved set-group and saved set-user ID is available,
106 with which the system
108 .It Li _SC_BC_BASE_MAX
109 The maximum ibase/obase values in the
112 .It Li _SC_BC_DIM_MAX
113 The maximum array size in the
116 .It Li _SC_BC_SCALE_MAX
117 The maximum scale value in the
120 .It Li _SC_BC_STRING_MAX
121 The maximum string length in the
124 .It Li _SC_COLL_WEIGHTS_MAX
125 The maximum number of weights that can be assigned to any entry of
126 the LC_COLLATE order keyword in the locale definition file.
127 .It Li _SC_EXPR_NEST_MAX
128 The maximum number of expressions that can be nested within
133 The maximum length in bytes of a text-processing utility's input
135 .It Li _SC_RE_DUP_MAX
136 The maximum number of repeated occurrences of a regular expression
137 permitted when using interval notation.
141 with which the system attempts to comply.
143 Return 1 if the system's C-language development facilities support the
144 C-Language Bindings Option, otherwise \-1.
146 Return 1 if the system supports the C-Language Development Utilities Option,
148 .It Li _SC_2_CHAR_TERM
149 Return 1 if the system supports at least one terminal type capable of
150 all operations described in
153 .It Li _SC_2_FORT_DEV
154 Return 1 if the system supports the FORTRAN Development Utilities Option,
156 .It Li _SC_2_FORT_RUN
157 Return 1 if the system supports the FORTRAN Runtime Utilities Option,
159 .It Li _SC_2_LOCALEDEF
160 Return 1 if the system supports the creation of locales, otherwise \-1.
162 Return 1 if the system supports the Software Development Utilities Option,
165 Return 1 if the system supports the User Portability Utilities Option,
171 is not successful, \-1 is returned and
173 is set appropriately.
174 Otherwise, if the variable is associated with functionality that is not
175 supported, \-1 is returned and
178 Otherwise, the current variable value is returned.
182 function may fail and set
184 for any of the errors specified for the library function
186 In addition, the following error may be reported:
199 The value for _SC_STREAM_MAX is a minimum maximum, and required to be
200 the same as ANSI C's FOPEN_MAX, so the returned value is a ridiculously
201 small and misleading number.
203 Except for the fact that values returned by
205 may change over the lifetime of the calling process,
206 this function conforms to
211 function first appeared in