|
ptrace(2) -- process trace
|
The ptrace system call provides a means by which a parent process may observe and control the execution of another process, and examine and change its core image and registers. It is primarily used to... |
query_module(2) -- query the kernel for various bits pertaining to modules.
|
query_module requests information related to loadable modules from the kernel. The precise nature of the information and its format depends on the which sub function. Some functions require name to na... |
|
quotactl(2) -- manipulate disk quotas
|
The quota system defines for each user and/or group a soft limit and a hard limit bounding the amount of disk space that can be used on a given file system. The hard limit cannot be crossed. The soft ... |
read(2) -- read from a file descriptor
|
read() attempts to read up to count bytes from file descriptor fd into the buffer starting at buf. If count is zero, read() returns zero and has no other results. If count is greater than SSIZE_MAX, t... |
readdir(2) -- read directory entry
|
This is not the function you are interested in. Look at readdir(3) for the POSIX conforming C library interface. This page documents the bare kernel system call interface, which can change, and which ... |
readlink(2) -- read value of a symbolic link
|
readlink places the contents of the symbolic link path in the buffer buf, which has size bufsiz. readlink does not append a NUL character to buf. It will truncate the contents (to a length of bufsiz c... |
readv(2) -- read or write a vector
|
readv reads data from file descriptor fd, and puts the result in the buffers described by vector. The number of buffers is specified by count. The buffers are filled in the order specified. Operates j... |
reboot(2) -- reboot or enable/disable Ctrl-Alt-Del
|
The reboot call reboots the system, or enables/disables the reboot keystroke (abbreviated CAD, since the default is Ctrl-Alt-Delete; it can be changed using loadkeys(1)). This system call will fail (w... |
recv(2) -- receive a message from a socket
|
The recvfrom and recvmsg 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 not NULL, and the socket is ... |
rename(2) -- change the name or location of a file
|
rename renames a file, moving it between directories if required. Any other hard links to the file (as created using link(2)) are unaffected. If newpath already exists it will be atomically replaced (... |
rmdir(2) -- delete a directory
|
rmdir deletes a directory, which must be empty. |
sched_get_priority_max(2) -- get static priority range
|
sched_get_priority_max returns the maximum priority value that can be used with the scheduling algorithm identified by policy. sched_get_priority_min returns the minimum priority value that can be use... |
sched_rr_get_interval(2) -- get the SCHED_RR interval for the named process
|
sched_rr_get_interval writes into the timespec structure pointed to by tp the round robin time quantum for the process identified by pid. If pid is zero, the time quantum for the calling process is wr... |
sched_setparam(2) -- set and get scheduling parameters
|
sched_setparam sets the scheduling parameters associated with the scheduling policy for the process identified by pid. If pid is zero, then the parameters of the current process are set. The interpret... |
sched_setscheduler(2) -- set and get scheduling algorithm/parameters
|
sched_setscheduler sets both the scheduling policy and the associated parameters for the process identified by pid. If pid equals zero, the scheduler of the calling process will be set. The interpreta... |