man.bsd.lv manual page server

Manual Page Search Parameters

EXIT(2) System Calls Manual EXIT(2)

_exitterminate the calling process

library “libc”

#include <unistd.h>

void
_exit(int status);

The () system call terminates a process with the following consequences:

Most C programs call the library routine exit(3), which flushes buffers, closes streams, unlinks temporary files, etc., before calling ().

The _exit() system call can never return.

fork(2), sigaction(2), wait(2), exit(3), init(8)

The _exit() system call is expected to conform to IEEE Std 1003.1-1990 (“POSIX.1”).

The _exit() function appeared in Version 7 AT&T UNIX.

September 8, 2016 FreeBSD-12.0