|
utimes(2) -- Set file access and modification times
|
The utimes() function sets the access and modification times of the file pointed to by the path parameter to the value of the times parameter. The utimes() function allows time specifications accurate... |
vfork(2) -- Create a new process
|
The fork() and vfork() functions create a new process (child process) that is identical to the calling process (parent process). The child process inherits the following from the parent process: Envir... |
vtimes(2) -- Get information about resource utilization
|
The getrusage() function returns information describing the resources used by the current process or its terminated or waited for child processes. If the child process is never waited for, for example... |
wait(2) -- Wait for a child process to stop or terminate
|
The wait(), waitpid(), and wait3() functions allow the calling process to obtain status information pertaining to one of its child processes. Various options permit status information to be obtained f... |
wait3(2) -- Wait for a child process to stop or terminate
|
The wait(), waitpid(), and wait3() functions allow the calling process to obtain status information pertaining to one of its child processes. Various options permit status information to be obtained f... |
wait4(2) -- Wait for a child process to stop or terminate
|
The wait(), waitpid(), and wait3() functions allow the calling process to obtain status information pertaining to one of its child processes. Various options permit status information to be obtained f... |
waitid(2) -- Wait for child process to change state
|
The waitid() function holds a calling process until the state of a child process changes. The current state of the child is recorded in a structure pointed to by the infop parameter. If a child proces... |
waitpid(2) -- Wait for a child process to stop or terminate
|
The wait(), waitpid(), and wait3() functions allow the calling process to obtain status information pertaining to one of its child processes. Various options permit status information to be obtained f... |
write(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... |
writev(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... |
_exit(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... |