xref: /freebsd/lib/libc/stdlib/exit.3 (revision 3f3ec4b99f79d32a0bf15495559ca9883bd751f2)
1.\" Copyright (c) 1990, 1991, 1993
2.\"	The Regents of the University of California.  All rights reserved.
3.\"
4.\" This code is derived from software contributed to Berkeley by
5.\" the American National Standards Committee X3, on Information
6.\" Processing Systems.
7.\"
8.\" Redistribution and use in source and binary forms, with or without
9.\" modification, are permitted provided that the following conditions
10.\" are met:
11.\" 1. Redistributions of source code must retain the above copyright
12.\"    notice, this list of conditions and the following disclaimer.
13.\" 2. Redistributions in binary form must reproduce the above copyright
14.\"    notice, this list of conditions and the following disclaimer in the
15.\"    documentation and/or other materials provided with the distribution.
16.\" 3. Neither the name of the University nor the names of its contributors
17.\"    may be used to endorse or promote products derived from this software
18.\"    without specific prior written permission.
19.\"
20.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
21.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23.\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
24.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30.\" SUCH DAMAGE.
31.\"
32.Dd July 24, 2024
33.Dt EXIT 3
34.Os
35.Sh NAME
36.Nm exit , _Exit
37.Nd perform normal program termination
38.Sh LIBRARY
39.Lb libc
40.Sh SYNOPSIS
41.In stdlib.h
42.Ft void
43.Fn exit "int status"
44.Ft void
45.Fn _Exit "int status"
46.Sh DESCRIPTION
47The
48.Fn exit
49and
50.Fn _Exit
51functions terminate a process.
52.Pp
53Before termination,
54.Fn exit
55performs the following functions in the order listed:
56.Bl -enum -offset indent
57.It
58Call all functions registered with the
59.Xr __cxa_atexit 3
60function
61(which are typically destructors from the loaded dynamic objects),
62and the functions registered with the
63.Xr atexit 3
64function, in the reverse order of their registration.
65.It
66Flush all open output streams.
67.It
68Close all open streams.
69.El
70.Pp
71The
72.Fn _Exit
73function terminates without calling the functions registered with the
74.Xr atexit 3
75function, and may or may not perform the other actions listed.
76The
77.Fx
78implementation of the
79.Fn _Exit
80function does not call destructors registered with
81.Xr __cxa_atexit 3 ,
82does not flush buffers, and does not close streams.
83.Pp
84Both functions make the low-order eight bits of the
85.Fa status
86argument available to a parent process which has called a
87.Xr wait 2 Ns -family
88function.
89.Pp
90The C Standard
91.Pq St -isoC-99
92defines the values
93.Li 0 ,
94.Dv EXIT_SUCCESS ,
95and
96.Dv EXIT_FAILURE
97as possible values of
98.Fa status .
99Cooperating processes may use other values;
100in a program which might be called by a mail transfer agent, the
101values described in
102.Xr sysexits 3
103may be used to provide more information to the parent process.
104.Pp
105Calls to the
106.Fn exit
107function are serialized.
108All functions registered by
109.Xr atexit 3
110are executed in the first thread that called
111.Nm exit .
112If any other thread of the process calls
113.Nm exit
114before all registered functions have completed or before the process
115terminates, the thread is blocked until the process terminates.
116The exit status of the process is the
117.Fa status
118argument of the first
119.Nm exit
120call which thread proceeds the atexit handlers.
121.Pp
122Note that
123.Fn exit
124does nothing to prevent bottomless recursion should a function registered
125using
126.Xr atexit 3
127itself call
128.Fn exit .
129Such functions must call
130.Fn _Exit
131instead (although this has other effects as well which may not be desired).
132.Sh RETURN VALUES
133The
134.Fn exit
135and
136.Fn _Exit
137functions
138never return.
139.Sh SEE ALSO
140.Xr _exit 2 ,
141.Xr abort2 2 ,
142.Xr wait 2 ,
143.Xr at_quick_exit 3 ,
144.Xr atexit 3 ,
145.Xr intro 3 ,
146.Xr quick_exit 3 ,
147.Xr sysexits 3 ,
148.Xr tmpfile 3
149.Sh STANDARDS
150The
151.Fn exit
152and
153.Fn _Exit
154functions conform to
155.St -isoC-99 .
156.Sh HISTORY
157The
158.Fn exit
159function appeared in
160.At v1 .
161