]> git.ipfire.org Git - thirdparty/man-pages.git/blob - man3/exit.3
stdio.3: wsfix
[thirdparty/man-pages.git] / man3 / exit.3
1 .\" Copyright (C) 2001 Andries Brouwer <aeb@cwi.nl>.
2 .\"
3 .\" %%%LICENSE_START(VERBATIM)
4 .\" Permission is granted to make and distribute verbatim copies of this
5 .\" manual provided the copyright notice and this permission notice are
6 .\" preserved on all copies.
7 .\"
8 .\" Permission is granted to copy and distribute modified versions of this
9 .\" manual under the conditions for verbatim copying, provided that the
10 .\" entire resulting derived work is distributed under the terms of a
11 .\" permission notice identical to this one.
12 .\"
13 .\" Since the Linux kernel and libraries are constantly changing, this
14 .\" manual page may be incorrect or out-of-date. The author(s) assume no
15 .\" responsibility for errors or omissions, or for damages resulting from
16 .\" the use of the information contained herein. The author(s) may not
17 .\" have taken the same level of care in the production of this manual,
18 .\" which is licensed free of charge, as they might when working
19 .\" professionally.
20 .\"
21 .\" Formatted or processed versions of this manual, if unaccompanied by
22 .\" the source, must acknowledge the copyright and authors of this work.
23 .\" %%%LICENSE_END
24 .\"
25 .\" FIXME . There are a lot of other process termination actions that
26 .\" could be listed on this page. See, for example, the list in the
27 .\" POSIX exit(3p) page.
28 .\"
29 .TH EXIT 3 2017-09-15 "Linux" "Linux Programmer's Manual"
30 .SH NAME
31 exit \- cause normal process termination
32 .SH SYNOPSIS
33 .nf
34 .B #include <stdlib.h>
35 .PP
36 .BI "void exit(int " status );
37 .fi
38 .SH DESCRIPTION
39 The
40 .BR exit ()
41 function causes normal process termination and the
42 value of \fIstatus & 0377\fP is returned to the parent
43 (see
44 .BR wait (2)).
45 .PP
46 All functions registered with
47 .BR atexit (3)
48 and
49 .BR on_exit (3)
50 are called, in the reverse order of their registration.
51 (It is possible for one of these functions to use
52 .BR atexit (3)
53 or
54 .BR on_exit (3)
55 to register an additional
56 function to be executed during exit processing;
57 the new registration is added to the front of the list of functions
58 that remain to be called.)
59 If one of these functions does not return
60 (e.g., it calls
61 .BR _exit (2),
62 or kills itself with a signal),
63 then none of the remaining functions is called,
64 and further exit processing (in particular, flushing of
65 .BR stdio (3)
66 streams) is abandoned.
67 If a function has been registered multiple times using
68 .BR atexit (3)
69 or
70 .BR on_exit (3),
71 then it is called as many times as it was registered.
72 .PP
73 All open
74 .BR stdio (3)
75 streams are flushed and closed.
76 Files created by
77 .BR tmpfile (3)
78 are removed.
79 .PP
80 The C standard specifies two constants,
81 \fBEXIT_SUCCESS\fP and \fBEXIT_FAILURE\fP,
82 that may be passed to
83 .BR exit ()
84 to indicate successful or unsuccessful
85 termination, respectively.
86 .SH RETURN VALUE
87 The
88 .BR exit ()
89 function does not return.
90 .SH ATTRIBUTES
91 For an explanation of the terms used in this section, see
92 .BR attributes (7).
93 .TS
94 allbox;
95 lb lb lb
96 l l l.
97 Interface Attribute Value
98 T{
99 .BR exit ()
100 T} Thread safety MT-Unsafe race:exit
101 .TE
102 .PP
103 The
104 .BR exit ()
105 function uses a global variable that is not protected,
106 so it is not thread-safe.
107 .SH CONFORMING TO
108 POSIX.1-2001, POSIX.1-2008, C89, C99, SVr4, 4.3BSD.
109 .SH NOTES
110 .PP
111 The behavior is undefined if one of the functions registered using
112 .BR atexit (3)
113 and
114 .BR on_exit (3)
115 calls either
116 .BR exit ()
117 or
118 .BR longjmp (3).
119 Note that a call to
120 .BR execve (2)
121 removes registrations created using
122 .BR atexit (3)
123 and
124 .BR on_exit (3).
125 .PP
126 The use of
127 .B EXIT_SUCCESS
128 and
129 .B EXIT_FAILURE
130 is slightly more portable
131 (to non-UNIX environments) than the use of 0 and some nonzero value
132 like 1 or \-1.
133 In particular, VMS uses a different convention.
134 .PP
135 BSD has attempted to standardize exit codes; see the file
136 .IR <sysexits.h> .
137 .PP
138 After
139 .BR exit (),
140 the exit status must be transmitted to the
141 parent process.
142 There are three cases:
143 .IP \(bu 3
144 If the parent has set
145 .BR SA_NOCLDWAIT ,
146 or has set the
147 .B SIGCHLD
148 handler to
149 .BR SIG_IGN ,
150 the status is discarded and the child dies immediately.
151 .IP \(bu
152 If the parent was waiting on the child,
153 it is notified of the exit status and the child dies immediately.
154 .IP \(bu
155 Otherwise,
156 the child becomes a "zombie" process:
157 most of the process resources are recycled,
158 but a slot containing minimal information about the child process
159 (termination status, resource usage statistics) is retained in process table.
160 This allows the parent to subsequently use
161 .BR waitpid (2)
162 (or similar) to learn the termination status of the child;
163 at that point the zombie process slot is released.
164 .PP
165 If the implementation supports the
166 .B SIGCHLD
167 signal, this signal
168 is sent to the parent.
169 If the parent has set
170 .BR SA_NOCLDWAIT ,
171 it is undefined whether a
172 .B SIGCHLD
173 signal is sent.
174 .\"
175 .SS Signals sent to other processes
176 If the exiting process is a session leader and its controlling terminal
177 is the controlling terminal of the session, then each process in
178 the foreground process group of this controlling terminal
179 is sent a
180 .B SIGHUP
181 signal, and the terminal is disassociated
182 from this session, allowing it to be acquired by a new controlling
183 process.
184 .PP
185 If the exit of the process causes a process group to become orphaned,
186 and if any member of the newly orphaned process group is stopped,
187 then a
188 .B SIGHUP
189 signal followed by a
190 .B SIGCONT
191 signal will be
192 sent to each process in this process group.
193 See
194 .BR setpgid (2)
195 for an explanation of orphaned process groups.
196 .PP
197 Except in the above cases,
198 where the signalled processes may be children of the terminating process,
199 termination of a process does
200 .I not
201 in general cause a signal to be sent to children of that process.
202 However, a process can use the
203 .BR prctl (2)
204 .B PR_SET_PDEATHSIG
205 operation to arrange that it receives a signal if its parent terminates.
206 .SH SEE ALSO
207 .BR _exit (2),
208 .BR get_robust_list (2),
209 .BR setpgid (2),
210 .BR wait (2),
211 .BR atexit (3),
212 .BR on_exit (3),
213 .BR tmpfile (3)