|
setuid(2) -- Set the user ID
|
The setuid() function sets the real user ID, effective user ID, and the saved set user ID to the user_id parameter. To change the real user ID, the effective user ID, and the saved set user ID, the ca... |
shmat(2) -- Attach a shared memory region
|
The shmat() function attaches the shared memory region identified by the shmid parameter to the virtual address space of the calling process. For the addr parameter, the process can specify either an ... |
|
shmctl(2) -- Perform shared memory control operations
|
The shmctl() function provides a variety of shared memory control operations as specified by the cmd parameter. The cmd values and their operations are as follows: Queries the shared memory region ID ... |
shmdt(2) -- Detach a shared memory region
|
The shmdt() function detaches the shared memory region at the address specified by the addr parameter from the address space of the calling process. Other instances of the region attached at other add... |
shmget(2) -- Return (and possibly create) the ID for a shared memory region
|
The shmget() function returns (and possibly creates) the ID for the shared memory region identified by the key parameter. If IPC_PRIVATE is used for the key parameter, the shmget() function returns th... |
shutdown(2) -- Shut down socket send and receive operations
|
The shutdown() function disables receive and/or send operations on the specified socket. |
sigaction(2) -- Specify the action to take upon delivery of a signal
|
When a process requests the sigaction() function, the process can both examine or specify what action is to be performed when the specified signal is delivered. The parameters determine the behavior o... |
sigaltstack(2) -- set or get signal alternate stack context
|
This function enables another stack area to be defined where signals can be examined for their execution status and processed. If a signal's action, specified by the sigaction(2) function, indicates ... |
sigblock(2) -- Provide a compatibility interface to the sigprocmask function
|
The sigblock() function causes the signals specified by the mask parameter to be added to the set of signals currently being blocked from delivery. The signals are blocked from delivery by logically O... |
signal(2) -- Modifies signal functions
|
The signal function provides compatibility for older versions of the operating system whose function is a subset of the sigaction function. The signal function sets the action associated with a signal... |
sigpending(2) -- Examine pending signals
|
The sigpending() function stores in the object pointed to by the set parameter the set of signals that are blocked from delivery and pending to the calling process. |
sigprocmask(2) -- Set the current signal mask
|
The sigprocmask() function is used to examine or change the signal mask of the calling process. Typically, you would use the sigprocmask (SIG_BLOCK) call to block signals during a critical section of ... |
sigreturn(2) -- Return from a signal
|
The sigreturn() function restores the processor state of the calling process from a sigcontext structure. The sigcontext structure contains the state of all applicationvisible registers as well as the... |
sigsend(2) -- Send a signal to one or more processes
|
The sigsend function sends a signal to a group of processes specified by the id and idtype parameters. The sig parameter specifies the signal to be sent. It contains either a valid signal or a zero (0... |
sigsendset(2) -- Send a signal to one or more processes
|
The sigsend function sends a signal to a group of processes specified by the id and idtype parameters. The sig parameter specifies the signal to be sent. It contains either a valid signal or a zero (0... |