|
swapcontext(3) -- modify and exchange user thread contexts
|
The makecontext() function modifies the user thread context pointed to by ucp, which must have previously been initialized by a call to getcontext(3) and had a stack allocated for it. The context is m... |
swprintf(3) -- formatted wide character output conversion
|
The wprintf() family of functions produces output according to a format as described below. The wprintf() and vwprintf() functions write output to stdout, the standard output stream; fwprintf() and vf... |
swscanf(3) -- wide character input format conversion
|
The wscanf() family of functions scans input according to a format as described below. This format may contain conversion specifiers; the results from such conversions, if any, are stored through the ... |
syncok(3) -- create curses windows
|
Calling newwin creates and returns a pointer to a new window with the given number of lines and columns. The upper left-hand corner of the window is at line begin_y, column begin_x. If either nlines o... |
sysconf(3) -- get configurable system variables
|
This interface is defined by IEEE Std 1003.1-1988 (``POSIX.1''). A far more complete interface is available using sysctl(3). The sysconf() function provides a method for applications to determine th... |
sysctl(3) -- get or set system information
|
The sysctl() function retrieves system information and allows processes with appropriate privileges to set system information. The information available from sysctl() consists of integers, strings, an... |
sysctlbyname(3) -- get or set system information
|
The sysctl() function retrieves system information and allows processes with appropriate privileges to set system information. The information available from sysctl() consists of integers, strings, an... |
sysctlnametomib(3) -- get or set system information
|
The sysctl() function retrieves system information and allows processes with appropriate privileges to set system information. The information available from sysctl() consists of integers, strings, an... |
sysexits(3) -- preferable exit codes for programs
|
According to style(9), it is not a good practice to call exit(3) with arbitrary values to indicate a failure condition when ending a program. Instead, the pre-defined exit codes from sysexits should b... |
syslog(3) -- control system log
|
The syslog() function writes message to the system message logger. The message is then written to the system console, log files, logged-in users, or forwarded to other machines as appropriate. (See sy... |
system(3) -- pass a command to the shell
|
The system() function hands the argument string to the command interpreter sh(1). The calling process waits for the shell to finish executing the command, ignoring SIGINT and SIGQUIT, and blocking SIG... |
sys_errlist(3) -- system error messages
|
The strerror(), strerror_r() and perror() functions look up the error message string corresponding to an error number. The strerror() function accepts an error number argument errnum and returns a poi... |
sys_nerr(3) -- system error messages
|
The strerror(), strerror_r() and perror() functions look up the error message string corresponding to an error number. The strerror() function accepts an error number argument errnum and returns a poi... |