![]() |
![]() |
|
|
![]() |
![]() |
HP-UX Reference Volume 3 of 5 > s![]() sysconf(2) |
|
NAMEsysconf() — get configurable system variables DESCRIPTIONThe sysconf() system call provides a way for applications to determine the current value of a configurable limit or variable. The name argument represents the system variable being queried. The following table lists the configuration variables whose values can be determined by calling sysconf(), and for each variable, the associated value of the name argument and the value returned:
Some of the variables in the table are defined as constants in <limits.h> (see limits(5)). The associated values of the name argument are defined in <unistd.h>. The possible values of the CPU_VERSION variable returned by sysconf(_SC_CPU_VERSION) and their meanings are:
The CPU_IS_PA_RISC() function classifies cpuvers, a value of the CPU_VERSION variable, as to its processor family. The availability of architecture specific instructions is indicated by the key bit data returned by sysconf(_SC_CPU_KEYBITS1). Upon successful completion, the data returned will be the logical OR of the defined values for the features supported. The possible values returned by sysconf(_SC_CPU_KEYBITS1) and their meanings are shown in the following table.
The format of the value returned by sysconf(_SC_LIBC_VERSION) is as follows: XXyyZZZZqN where
RETURN VALUEUpon successful completion, sysconf() returns the value of the named variable. If the value of name is not valid, sysconf() returns -1 and sets errno to indicate the error. If the variable corresponding to name is not defined, sysconf() returns -1, but does not change errno. CPU_IS_PA_RISC() returns positive nonzero if cpuvers is an HP PA-RISC processor; zero if not. ERRORSIf sysconf() fails, the value of errno (see errno(2)) is set to:
EXAMPLESThe following example determines the number of times the system clock ticks each second: #include <unistd.h> long ticks; ... ticks = sysconf(_SC_CLK_TCK); The following example determines if the current processor is an HP PA-RISC machine: #include <unistd.h> if (CPU_IS_PA_RISC(sysconf(_SC_CPU_VERSION))) ... WARNINGSCPU_IS_PA_RISC() is implemented as a macro. Normally, the values returned from sysconf() do not change during the lifetime of the calling process. However, the value of the symbolic constant _POSIX_VERSION and thus the value of sysconf(_SC_VERSION) can vary under certain circumstances. If either of the feature test macros _POSIX1_1988 or _XPG3 is defined by the programmer prior to including <unistd.h>, the value of _POSIX_VERSION is defined as 198808, in conformance with POSIX.1-1988, FIPS 151-1, and XPG3. Otherwise, the value of _POSIX_VERSION is defined as 199009, in conformance with POSIX.1-1990. Similarly, the value of the symbolic constant _XOPEN_VERSION and thus the value of sysconf(_SC_XOPEN_VERSION) can vary under certain circumstances. If the feature test macro _XPG3 is defined by the programmer prior to including <unistd.h>, the value of _XOPEN_VERSION is defined as 3, in conformance with XPG3. Otherwise, the value of _XOPEN_VERSION is defined as 4, in conformance with XPG4. See stdsyms(5) for more information about these feature test macros. Any application that has a dependency on libdld.sl is a potential user of both archived and shared libc. Applications that comprise both archived and shared components where sysconf(_SC_LIBC_VERSION) may be invoked from both the archived and shared components may get inconsistent return values from sysconf(). SEE ALSOgetconf(1), atexit(2), exec(2), fork(2), getrlimit(2), pathconf(2), times(2), clock(3C), regcomp(3C), limits(5), stdsyms(5), unistd(5), x_open(5). HP Process Resource Manager: prmconfig(1) in HP Process Resource Manager User's Guide. |
![]() |
||
![]() |
![]() |
![]() |
|||||||||||||
|