xref: /openbsd-src/lib/libc/sys/_exit.2 (revision 62a742911104f98b9185b2c6b6007d9b1c36396c)
1.\"	$OpenBSD: _exit.2,v 1.3 1998/07/06 18:27:00 deraadt Exp $
2.\"	$NetBSD: _exit.2,v 1.6 1995/02/27 12:31:34 cgd Exp $
3.\"
4.\" Copyright (c) 1980, 1993
5.\"	The Regents of the University of California.  All rights reserved.
6.\"
7.\" Redistribution and use in source and binary forms, with or without
8.\" modification, are permitted provided that the following conditions
9.\" are met:
10.\" 1. Redistributions of source code must retain the above copyright
11.\"    notice, this list of conditions and the following disclaimer.
12.\" 2. Redistributions in binary form must reproduce the above copyright
13.\"    notice, this list of conditions and the following disclaimer in the
14.\"    documentation and/or other materials provided with the distribution.
15.\" 3. All advertising materials mentioning features or use of this software
16.\"    must display the following acknowledgement:
17.\"	This product includes software developed by the University of
18.\"	California, Berkeley and its contributors.
19.\" 4. Neither the name of the University nor the names of its contributors
20.\"    may be used to endorse or promote products derived from this software
21.\"    without specific prior written permission.
22.\"
23.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
24.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26.\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
27.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
28.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33.\" SUCH DAMAGE.
34.\"
35.\"     @(#)_exit.2	8.1 (Berkeley) 6/4/93
36.\"
37.Dd June 4, 1993
38.Dt EXIT 2
39.Os BSD 4
40.Sh NAME
41.Nm _exit
42.Nd terminate the calling process
43.Sh SYNOPSIS
44.Fd #include <unistd.h>
45.Ft void
46.Fn _exit "int status"
47.Sh DESCRIPTION
48The
49.Fn _exit
50function
51terminates a process with the following consequences:
52.Bl -bullet
53.It
54All of the descriptors open in the calling process are closed.
55This may entail delays, for example, waiting for output to drain;
56a process in this state may not be killed, as it is already dying.
57.It
58If the parent process of the calling process has an outstanding
59.Xr wait 2
60call
61or catches the
62.Dv SIGCHLD
63signal,
64it is notified of the calling process's termination and
65the
66.Em status
67is set as defined by
68.Xr wait 2 .
69.It
70The parent process-ID of all of the calling process's existing child
71processes are set to 1; the initialization process
72(see the DEFINITIONS section of
73.Xr intro 2 )
74inherits each of these processes.
75.It
76If the termination of the process causes any process group
77to become orphaned (usually because the parents of all members
78of the group have now exited; see
79.Dq orphaned process group
80in
81.Xr intro 2 ) ,
82and if any member of the orphaned group is stopped,
83the
84.Dv SIGHUP
85signal and the
86.Dv SIGCONT
87signal are sent to all members of the newly-orphaned process group.
88.It
89If the process is a controlling process (see
90.Xr intro 2 ) ,
91the
92.Dv SIGHUP
93signal is sent to the foreground process group of the controlling terminal,
94and all current access to the controlling terminal is revoked.
95.El
96.Pp
97Most C programs call the library routine
98.Xr exit 3 ,
99which flushes buffers, closes streams, unlinks temporary files, etc.,
100before
101calling
102.Fn _exit .
103.Sh RETURN VALUE
104.Fn _exit
105can never return.
106.Sh SEE ALSO
107.Xr fork 2 ,
108.Xr sigaction 2 ,
109.Xr wait 2 ,
110.Xr exit 3
111.Sh STANDARDS
112The
113.Nm _exit
114function is defined by
115.St -p1003.1-88 .
116