1 /* Copyright (C) 1991,1993,1995-1997,2001,2002,2003,2009
2 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, see
17 <http://www.gnu.org/licenses/>. */
26 #include <sys/param.h>
27 #include <sys/sysinfo.h>
30 /* Get the value of the system variable NAME. */
42 return MAX (__tzname_max (), _POSIX_TZNAME_MAX
);
44 case _SC_CHARCLASS_NAME_MAX
:
45 #ifdef CHARCLASS_NAME_MAX
46 return CHARCLASS_NAME_MAX
;
51 case _SC_COLL_WEIGHTS_MAX
:
52 #ifdef COLL_WEIGHTS_MAX
53 return COLL_WEIGHTS_MAX
;
58 case _SC_EQUIV_CLASS_MAX
:
59 #ifdef EQUIV_CLASS_MAX
60 return EQUIV_CLASS_MAX
;
66 #ifdef _POSIX2_LOCALEDEF
67 return _POSIX2_LOCALEDEF
;
72 case _SC_NPROCESSORS_CONF
:
73 return __get_nprocs_conf ();
75 case _SC_NPROCESSORS_ONLN
:
76 return __get_nprocs ();
79 return __get_phys_pages ();
81 case _SC_AVPHYS_PAGES
:
82 return __get_avphys_pages ();
85 /* We have no limit since we use lists. */
89 /* We have no limit but since the return value might be used to
90 allocate a buffer we restrict the value. */
109 return sizeof (long int) * CHAR_BIT
;
112 return sizeof (int) * CHAR_BIT
;
121 return _POSIX_SSIZE_MAX
;
147 case _SC_GETGR_R_SIZE_MAX
:
148 return NSS_BUFLEN_GROUP
;
150 case _SC_GETPW_R_SIZE_MAX
:
151 return NSS_BUFLEN_PASSWD
;
156 case _SC_NGROUPS_MAX
:
159 case _SC_JOB_CONTROL
:
161 case _SC_REALTIME_SIGNALS
:
162 case _SC_PRIORITY_SCHEDULING
:
164 case _SC_ASYNCHRONOUS_IO
:
165 case _SC_PRIORITIZED_IO
:
166 case _SC_SYNCHRONIZED_IO
:
168 case _SC_MAPPED_FILES
:
170 case _SC_MEMLOCK_RANGE
:
171 case _SC_MEMORY_PROTECTION
:
172 case _SC_MESSAGE_PASSING
:
174 case _SC_SHARED_MEMORY_OBJECTS
:
176 case _SC_AIO_LISTIO_MAX
:
178 case _SC_AIO_PRIO_DELTA_MAX
:
179 case _SC_DELAYTIMER_MAX
:
180 case _SC_MQ_OPEN_MAX
:
181 case _SC_MQ_PRIO_MAX
:
185 case _SC_SEM_NSEMS_MAX
:
186 case _SC_SEM_VALUE_MAX
:
187 case _SC_SIGQUEUE_MAX
:
197 case _SC_PII_INTERNET_STREAM
:
198 case _SC_PII_INTERNET_DGRAM
:
199 case _SC_PII_OSI_COTS
:
200 case _SC_PII_OSI_CLTS
:
204 case _SC_BC_BASE_MAX
:
206 case _SC_BC_SCALE_MAX
:
207 case _SC_BC_STRING_MAX
:
208 case _SC_EXPR_NEST_MAX
:
216 case _SC_2_CHAR_TERM
:
217 case _SC_2_C_VERSION
:
221 case _SC_THREAD_SAFE_FUNCTIONS
:
222 case _SC_LOGIN_NAME_MAX
:
223 case _SC_TTY_NAME_MAX
:
224 case _SC_THREAD_DESTRUCTOR_ITERATIONS
:
225 case _SC_THREAD_KEYS_MAX
:
226 case _SC_THREAD_STACK_MIN
:
227 case _SC_THREAD_THREADS_MAX
:
228 case _SC_THREAD_ATTR_STACKADDR
:
229 case _SC_THREAD_ATTR_STACKSIZE
:
230 case _SC_THREAD_PRIORITY_SCHEDULING
:
231 case _SC_THREAD_PRIO_INHERIT
:
232 case _SC_THREAD_PRIO_PROTECT
:
233 case _SC_THREAD_PROCESS_SHARED
:
235 case _SC_XOPEN_VERSION
:
236 case _SC_XOPEN_XCU_VERSION
:
238 case _SC_XOPEN_CRYPT
:
239 case _SC_XOPEN_ENH_I18N
:
252 case _SC_XBS5_ILP32_OFF32
:
253 case _SC_XBS5_ILP32_OFFBIG
:
254 case _SC_XBS5_LP64_OFF64
:
255 case _SC_XBS5_LPBIG_OFFBIG
:
257 case _SC_POSIX_V6_ILP32_OFF32
:
258 case _SC_POSIX_V6_ILP32_OFFBIG
:
259 case _SC_POSIX_V6_LP64_OFF64
:
260 case _SC_POSIX_V6_LPBIG_OFFBIG
:
262 case _SC_POSIX_V7_ILP32_OFF32
:
263 case _SC_POSIX_V7_ILP32_OFFBIG
:
264 case _SC_POSIX_V7_LP64_OFF64
:
265 case _SC_POSIX_V7_LPBIG_OFFBIG
:
267 case _SC_XOPEN_LEGACY
:
268 case _SC_XOPEN_REALTIME
:
269 case _SC_XOPEN_REALTIME_THREADS
:
274 __set_errno (ENOSYS
);
278 weak_alias (__sysconf
, sysconf
)
279 libc_hidden_def (__sysconf
)
281 stub_warning (sysconf
)