diff options
author | Florian Weimer <fweimer@redhat.com> | 2017-03-07 09:37:46 +0100 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2017-03-07 17:45:38 +0100 |
commit | 8492c4dd699e2a65a5a2e8fca3e0e530326c92b9 (patch) | |
tree | 86655668aff2779cb76e71c2abfdbe42a80d720b /manual | |
parent | 1c1243b6fc33c029488add276e56570a07803bfd (diff) | |
download | glibc-8492c4dd699e2a65a5a2e8fca3e0e530326c92b9.tar glibc-8492c4dd699e2a65a5a2e8fca3e0e530326c92b9.tar.gz glibc-8492c4dd699e2a65a5a2e8fca3e0e530326c92b9.tar.bz2 glibc-8492c4dd699e2a65a5a2e8fca3e0e530326c92b9.zip |
timezone: Remove TZNAME_MAX limit from sysconf [BZ #15576]
glibc does not impose a limit, and POSIX does not allow a
sysconf limit which changes during the lifetime of a process.
Diffstat (limited to 'manual')
-rw-r--r-- | manual/conf.texi | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/manual/conf.texi b/manual/conf.texi index 78b7a4d01a..1fe75c293f 100644 --- a/manual/conf.texi +++ b/manual/conf.texi @@ -291,14 +291,10 @@ constants are declared in the header file @file{unistd.h}. @safety{@prelim{}@mtsafe{@mtsenv{}}@asunsafe{@asulock{} @ascuheap{}}@acunsafe{@aculock{} @acsmem{} @acsfd{}}} @c Some parts of the implementation open /proc and /sys files and dirs @c to collect system details, using fd and stream I/O depending on the -@c case. _SC_TZNAME_MAX calls __tzname_max, that (while holding a lock) -@c calls tzset_internal, that calls getenv if it's called the first -@c time; there are free and strdup calls in there too. The returned max -@c value may change over time for TZNAME_MAX, depending on selected -@c timezones; NPROCS, NPROCS_CONF, PHYS_PAGES, AVPHYS_PAGES, -@c NGROUPS_MAX, SIGQUEUE_MAX, depending on variable values read from -@c /proc at each call, and from rlimit-obtained values CHILD_MAX, -@c OPEN_MAX, ARG_MAX, SIGQUEUE_MAX. +@c case. The returned max value may change over time for NPROCS, +@c NPROCS_CONF, PHYS_PAGES, AVPHYS_PAGES, NGROUPS_MAX, SIGQUEUE_MAX, +@c depending on variable values read from /proc at each call, and from +@c rlimit-obtained values CHILD_MAX, OPEN_MAX, ARG_MAX, SIGQUEUE_MAX. This function is used to inquire about runtime system parameters. The @var{parameter} argument should be one of the @samp{_SC_} symbols listed below. |