|
profil(2) -- Start and stop execution profiling
|
The profil() function controls execution profiling. The short_buffer parameter points to an area of memory whose length (in bytes) is given by the buffer_size parameter. After this call, the process'... |
ptrace(2) -- Trace the execution of a child process
|
The ptrace() function permits a parent process to control execution of a child process. It is primarily used by utility programs to enable breakpoint debugging. The child process behaves normally unti... |
|
putmsg(2) -- Send a message on a Stream
|
The putmsg() and putpmsg() functions send messages to the STREAMS file. These messages are generated from user-provided buffer(s), and must contain a control part and/or a data part. The open Stream s... |
putpmsg(2) -- Send a message on a Stream
|
The putmsg() and putpmsg() functions send messages to the STREAMS file. These messages are generated from user-provided buffer(s), and must contain a control part and/or a data part. The open Stream s... |
pwrite(2) -- Write to a file
|
The write() function attempts to write nbytes of data to the file associated with the filedes parameter from the buffer pointed to by the buffer parameter. If the nbytes parameter is 0 (zero), the wri... |
quotactl(2) -- Manipulate disk quotas
|
The quotactl() function is used to enable and disable quotas and to manipulate disk quotas for file systems on which quotas have been enabled. Quotas are supported for the UNIX file system (UFS) and t... |
read(2) -- read from a file
|
The read() function attempts to read nbytes of data from the file associated with the filedes parameter into the buffer pointed to by the buffer parameter. If the value of nbytes is 0 (zero), the read... |
readlink(2) -- Read the value of a symbolic link
|
The readlink() function places the contents of the symbolic link named by the path parameter in buffer, which has size buf_size. If the actual length of the symbolic link is greater than buf_size, an ... |
readv(2) -- read from a file
|
The read() function attempts to read nbytes of data from the file associated with the filedes parameter into the buffer pointed to by the buffer parameter. If the value of nbytes is 0 (zero), the read... |
reboot(2) -- Reboot or halt the system
|
The reboot() function restarts the system. The default startup is automatic and brings up /vmunix in the normal, nonmaintenance mode. In an application, the calling process must have superuser privile... |
recv(2) -- Receive messages from connected sockets
|
The recv() function receives messages from a connected socket. The recvfrom() and recvmsg() functions receive messages from both connected and unconnected sockets; however, they are usually used for u... |
recvfrom(2) -- Receive messages from sockets
|
The recvfrom() function permits an application program to receive messages from unconnected sockets. It is normally applied to unconnected sockets because it includes parameters that permit a calling ... |
recvmsg(2) -- Receive a message from a socket using a message structure
|
The recvmsg() function receives messages from unconnected or connected sockets and returns the total length of the message. For message-based sockets (for example, SOCK_DGRAM), you must read the entir... |
rename(2) -- Rename a directory or a file within a file system
|
The rename() function renames a directory or a file within a file system. For rename() to complete successfully, the calling process must have write and search permission to the parent directories of ... |
revoke(2) -- Void all references to a file
|
The revoke() function invalidates all file descriptors associated with the pathname specified in path, which must be a block- or character-special file. Any open file system object on the device on wh... |