|
readv(2) -- read input
|
The read() system call attempts to read nbytes of data from the object referenced by the descriptor d into the buffer pointed to by buf. The readv() system call performs the same action, but scatters ... |
reboot(2) -- reboot system or halt processor
|
The reboot() system call reboots the system. Only the super-user may reboot a machine on demand. However, a reboot is invoked automatically in the event of unrecoverable system failures. The howto arg... |
|
recv(2) -- receive a message from a socket
|
The recvfrom() and recvmsg() system calls are used to receive messages from a socket, and may be used to receive data on a socket whether or not it is connection-oriented. If from is non-nil, and the ... |
recvfrom(2) -- receive a message from a socket
|
The recvfrom() and recvmsg() system calls are used to receive messages from a socket, and may be used to receive data on a socket whether or not it is connection-oriented. If from is non-nil, and the ... |
recvmsg(2) -- receive a message from a socket
|
The recvfrom() and recvmsg() system calls are used to receive messages from a socket, and may be used to receive data on a socket whether or not it is connection-oriented. If from is non-nil, and the ... |
rename(2) -- change the name of a file
|
The rename() system call causes the link named from to be renamed as to. If to exists, it is first removed. Both from and to must be of the same type (that is, both directories or both non-directories... |
revoke(2) -- revoke file access
|
The revoke() system call invalidates all current open file descriptors in the system for the file named by path. Subsequent operations on any such descriptors fail, with the exceptions that a read() f... |
rfork(2) -- manipulate process resources
|
Forking, vforking or rforking are the only ways new processes are created. The flags argument to rfork() selects which resources of the invoking process (parent) are shared by the new process (child) ... |
rmdir(2) -- remove a directory file
|
The rmdir() system call removes a directory file whose name is given by path. The directory must not have any entries other than `.' and `..'. |
rtprio(2) -- examine or modify a process realtime or idle priority
|
The rtprio() system call is used to lookup or change the realtime or idle priority of a process. The function argument specifies the operation to be performed. RTP_LOOKUP to lookup the current priorit... |
sbrk(2) -- change data segment size
|
The brk() and sbrk() functions are legacy interfaces from before the advent of modern virtual memory management. The brk() and sbrk() functions are used to change the amount of memory allocated in a p... |
sched_getparam(2) -- set/get scheduling parameters
|
The sched_setparam() system call sets the scheduling parameters of the process specified by pid to the values specified by the sched_param structure pointed to by param. The value of the sched_priorit... |
sched_getscheduler(2) -- set/get scheduling policy and scheduler parameters
|
The sched_setscheduler() system call sets the scheduling policy and scheduling parameters of the process specified by pid to policy and the parameters specified in the sched_param structure pointed to... |
sched_get_priority_max(2) -- get scheduling parameter limits
|
The sched_get_priority_max() and sched_get_priority_min() system calls return the appropriate maximum or minimum, respectively, for the scheduling policy specified by policy. The sched_rr_get_interval... |
sched_get_priority_min(2) -- get scheduling parameter limits
|
The sched_get_priority_max() and sched_get_priority_min() system calls return the appropriate maximum or minimum, respectively, for the scheduling policy specified by policy. The sched_rr_get_interval... |