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 .\" 4. Neither the name of the University nor the names of its contributors
13 .\" may be used to endorse or promote products derived from this software
14 .\" without specific prior written permission.
16 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
17 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19 .\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
20 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
28 .\" @(#)sysconf.3 8.3 (Berkeley) 4/19/94
29 .\" $FreeBSD: src/lib/libc/gen/sysconf.3,v 1.25 2007/01/09 00:27:55 imp Exp $
36 .Nd get configurable system variables
42 .Fn sysconf "int name"
44 This interface is defined by
46 A far more complete interface is available using
51 function provides a method for applications to determine the current
52 value of a configurable system limit or option variable.
55 argument specifies the system variable to be queried.
56 Symbolic constants for each name value are found in the include file
58 Shell programmers who need access to these parameters should use the
62 The available values are as follows:
67 The maximum bytes of argument to
70 The maximum number of simultaneous processes per user id.
72 The frequency of the statistics clock in ticks per second.
74 The maximum number of elements in the I/O vector used by
80 .It Li _SC_NGROUPS_MAX
81 The maximum number of supplemental groups.
82 .It Li _SC_NPROCESSORS_CONF
83 The number of processors configured.
84 .It Li _SC_NPROCESSORS_ONLN
85 The number of processors currently online.
87 The maximum number of open files per user id.
89 The size of a system page in bytes.
91 The minimum maximum number of streams that a process may have open
94 The minimum maximum number of types supported for the name of a
96 .It Li _SC_JOB_CONTROL
97 Return 1 if job control is available on this system, otherwise \-1.
99 Returns 1 if saved set-group and saved set-user ID is available,
104 with which the system
106 .It Li _SC_BC_BASE_MAX
107 The maximum ibase/obase values in the
110 .It Li _SC_BC_DIM_MAX
111 The maximum array size in the
114 .It Li _SC_BC_SCALE_MAX
115 The maximum scale value in the
118 .It Li _SC_BC_STRING_MAX
119 The maximum string length in the
122 .It Li _SC_COLL_WEIGHTS_MAX
123 The maximum number of weights that can be assigned to any entry of
124 the LC_COLLATE order keyword in the locale definition file.
125 .It Li _SC_EXPR_NEST_MAX
126 The maximum number of expressions that can be nested within
131 The maximum length in bytes of a text-processing utility's input
133 .It Li _SC_RE_DUP_MAX
134 The maximum number of repeated occurrences of a regular expression
135 permitted when using interval notation.
139 with which the system attempts to comply.
141 Return 1 if the system's C-language development facilities support the
142 C-Language Bindings Option, otherwise \-1.
144 Return 1 if the system supports the C-Language Development Utilities Option,
146 .It Li _SC_2_CHAR_TERM
147 Return 1 if the system supports at least one terminal type capable of
148 all operations described in
151 .It Li _SC_2_FORT_DEV
152 Return 1 if the system supports the FORTRAN Development Utilities Option,
154 .It Li _SC_2_FORT_RUN
155 Return 1 if the system supports the FORTRAN Runtime Utilities Option,
157 .It Li _SC_2_LOCALEDEF
158 Return 1 if the system supports the creation of locales, otherwise \-1.
160 Return 1 if the system supports the Software Development Utilities Option,
163 Return 1 if the system supports the User Portability Utilities Option,
167 These values also exist, but may not be standard:
171 .It Li _SC_PHYS_PAGES
172 The number of pages of physical memory.
173 Note that it is possible that the product of this value and the value of
177 in some configurations on a 32bit machine.
182 is not successful, \-1 is returned and
184 is set appropriately.
185 Otherwise, if the variable is associated with functionality that is not
186 supported, \-1 is returned and
189 Otherwise, the current variable value is returned.
193 function may fail and set
195 for any of the errors specified for the library function
197 In addition, the following error may be reported:
210 Except for the fact that values returned by
212 may change over the lifetime of the calling process,
213 this function conforms to
218 function first appeared in
221 The value for _SC_STREAM_MAX is a minimum maximum, and required to be
222 the same as ANSI C's FOPEN_MAX, so the returned value is a ridiculously
223 small and misleading number.