|
async_daemon(2) -- Create a local NFS asynchronous I/O server
|
The use of the async_daemon() function is not supported in customer applications, and the interface is subject to change without notice. It is intended for use solely by nfsiod(8). The async_daemon() ... |
atexit(2) -- Terminate a process
|
The atexit() function registers functions to be called at normal process termination for cleanup processing. The function adds a single exit handler to a list of handlers to be called at process termi... |
audcntl(2) -- audit control
|
The audcntl system call provides control over flags offered by the audit subsystem. All requests, except where otherwise noted, are privileged. The following list describes the requests: The system au... |
audgen(2) -- generate an audit record
|
The audgen system call generates an audit record. The argument event is an integer indicating the event type of the operation being audited (see audit.h). The value of event must be between one of the... |
bind(2) -- Bind a name to a socket
|
The bind() function assigns an address to an unnamed socket. Sockets created with the socket() function are unnamed; they are identified only by their address family. A bind that references a UNIX dom... |
brk(2) -- Change space allocation
|
The brk() function sets the lowest data segment location not used by the program (called the break) to addr. In the alternate function sbrk(), incr more bytes are added to the program's data space, a... |
bsd_signal(2) -- Interface to simplified signal facilities
|
The bsd_signal() function provides a partially compatible interface for programs written to historical system interfaces. The handler function should be declared as follows (sig is the signal number).... |
chdir(2) -- Change the current directory
|
The chdir() function changes the current directory to the directory indicated by the path parameter. If the path parameter refers to a symbolic link, the chdir() function sets the current directory to... |
chmod(2) -- Change file access permissions
|
The chmod() function sets the access permissions of the file specified by the path parameter according to the bit pattern specified by the mode parameter. The fchmod() function sets the access permiss... |
chown(2) -- Change the owner and group IDs of a file
|
The chown(), lchown() and fchown() functions change the owner and group of a file. A process can change the value of the owner ID of a file only if the process has superuser privilege. A process witho... |
chroot(2) -- Change the effective root directory
|
The chroot() function causes the directory named by the path parameter to become the effective root directory. The effective root directory is the starting point when searching for a file's pathname ... |
close(2) -- Close the file associated with a file descriptor
|
The close() function closes the file associated with the filedes parameter. All regions of a file specified by the filedes parameter that this process has previously locked with the lockf() function a... |
connect(2) -- Connect two sockets
|
The connect() function requests a connection between two sockets. The kernel sets up the communications links between the sockets; both sockets must use the same address format and protocol. The conne... |