1 /* Copyright (C) 1991,1993,1995-1997,2001,2002 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
4 The GNU C Library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Lesser General Public
6 License as published by the Free Software Foundation; either
7 version 2.1 of the License, or (at your option) any later version.
9 The GNU C Library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 Lesser General Public License for more details.
14 You should have received a copy of the GNU Lesser General Public
15 License along with the GNU C Library; if not, write to the Free
16 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
24 #include <sys/param.h>
25 #include <sys/sysinfo.h>
28 /* Get the value of the system variable NAME. */
40 return MAX (__tzname_max (), _POSIX_TZNAME_MAX
);
42 case _SC_CHARCLASS_NAME_MAX
:
43 #ifdef CHARCLASS_NAME_MAX
44 return CHARCLASS_NAME_MAX
;
49 case _SC_COLL_WEIGHTS_MAX
:
50 #ifdef COLL_WEIGHTS_MAX
51 return COLL_WEIGHTS_MAX
;
56 case _SC_EQUIV_CLASS_MAX
:
57 #ifdef EQUIV_CLASS_MAX
58 return EQUIV_CLASS_MAX
;
64 #ifdef _POSIX2_LOCALEDEF
65 return _POSIX2_LOCALEDEF
;
70 case _SC_NPROCESSORS_CONF
:
71 return __get_nprocs_conf ();
73 case _SC_NPROCESSORS_ONLN
:
74 return __get_nprocs ();
77 return __get_phys_pages ();
79 case _SC_AVPHYS_PAGES
:
80 return __get_avphys_pages ();
83 /* We have no limit since we use lists. */
87 /* We have no limit but since the return value might be used to
88 allocate a buffer we restrict the value. */
107 return sizeof (long int) * CHAR_BIT
;
110 return sizeof (int) * CHAR_BIT
;
119 return _POSIX_SSIZE_MAX
;
148 case _SC_NGROUPS_MAX
:
151 case _SC_JOB_CONTROL
:
153 case _SC_REALTIME_SIGNALS
:
154 case _SC_PRIORITY_SCHEDULING
:
156 case _SC_ASYNCHRONOUS_IO
:
157 case _SC_PRIORITIZED_IO
:
158 case _SC_SYNCHRONIZED_IO
:
160 case _SC_MAPPED_FILES
:
162 case _SC_MEMLOCK_RANGE
:
163 case _SC_MEMORY_PROTECTION
:
164 case _SC_MESSAGE_PASSING
:
166 case _SC_SHARED_MEMORY_OBJECTS
:
168 case _SC_AIO_LISTIO_MAX
:
170 case _SC_AIO_PRIO_DELTA_MAX
:
171 case _SC_DELAYTIMER_MAX
:
172 case _SC_MQ_OPEN_MAX
:
173 case _SC_MQ_PRIO_MAX
:
177 case _SC_SEM_NSEMS_MAX
:
178 case _SC_SEM_VALUE_MAX
:
179 case _SC_SIGQUEUE_MAX
:
189 case _SC_PII_INTERNET_STREAM
:
190 case _SC_PII_INTERNET_DGRAM
:
191 case _SC_PII_OSI_COTS
:
192 case _SC_PII_OSI_CLTS
:
196 case _SC_BC_BASE_MAX
:
198 case _SC_BC_SCALE_MAX
:
199 case _SC_BC_STRING_MAX
:
200 case _SC_EXPR_NEST_MAX
:
208 case _SC_2_CHAR_TERM
:
209 case _SC_2_C_VERSION
:
213 case _SC_THREAD_SAFE_FUNCTIONS
:
214 case _SC_GETGR_R_SIZE_MAX
:
215 case _SC_GETPW_R_SIZE_MAX
:
216 case _SC_LOGIN_NAME_MAX
:
217 case _SC_TTY_NAME_MAX
:
218 case _SC_THREAD_DESTRUCTOR_ITERATIONS
:
219 case _SC_THREAD_KEYS_MAX
:
220 case _SC_THREAD_STACK_MIN
:
221 case _SC_THREAD_THREADS_MAX
:
222 case _SC_THREAD_ATTR_STACKADDR
:
223 case _SC_THREAD_ATTR_STACKSIZE
:
224 case _SC_THREAD_PRIORITY_SCHEDULING
:
225 case _SC_THREAD_PRIO_INHERIT
:
226 case _SC_THREAD_PRIO_PROTECT
:
227 case _SC_THREAD_PROCESS_SHARED
:
229 case _SC_XOPEN_VERSION
:
230 case _SC_XOPEN_XCU_VERSION
:
232 case _SC_XOPEN_CRYPT
:
233 case _SC_XOPEN_ENH_I18N
:
246 case _SC_XBS5_ILP32_OFF32
:
247 case _SC_XBS5_ILP32_OFFBIG
:
248 case _SC_XBS5_LP64_OFF64
:
249 case _SC_XBS5_LPBIG_OFFBIG
:
251 case _SC_XOPEN_LEGACY
:
252 case _SC_XOPEN_REALTIME
:
253 case _SC_XOPEN_REALTIME_THREADS
:
258 __set_errno (ENOSYS
);
262 weak_alias (__sysconf
, sysconf
)
263 libc_hidden_def (__sysconf
)
265 stub_warning (sysconf
)
266 #include <stub-tag.h>