|
svc_sendreply(3) -- library routines for remote procedure calls
|
These routines allow C programs to make procedure calls on other machines across the network. First, the client calls a procedure to send a data packet to the server. Upon receipt of the packet, the s... |
svc_unregister(3) -- library routines for remote procedure calls
|
These routines allow C programs to make procedure calls on other machines across the network. First, the client calls a procedure to send a data packet to the server. Upon receipt of the packet, the s... |
swab(3) -- swap adjacent bytes
|
The function swab() copies len bytes from the location referenced by src to the location referenced by dst, swapping adjacent bytes. The argument len must be an even number. |
swap16(3) -- convert values between different byte orderings
|
These routines convert 16, 32 and 64-bit quantities between different byte orderings. The ``swap'' functions reverse the byte ordering of the given quantity, the others converts either from/to the n... |
swap32(3) -- convert values between different byte orderings
|
These routines convert 16, 32 and 64-bit quantities between different byte orderings. The ``swap'' functions reverse the byte ordering of the given quantity, the others converts either from/to the n... |
swap64(3) -- convert values between different byte orderings
|
These routines convert 16, 32 and 64-bit quantities between different byte orderings. The ``swap'' functions reverse the byte ordering of the given quantity, the others converts either from/to the n... |
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''). A far more complete interface is available using sysctl(3). The sysconf() function provides a method for applications to determine the ... |
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... |
sysexits(3) -- preferable exit codes for programs
|
According to style(9), it is not 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 be ... |
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 sys... |
syslog_r(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 sys... |
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... |