xref: /freebsd/lib/libc/stdlib/exit.3 (revision e0c4386e)
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 August 5, 2021
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
105Note that
106.Fn exit
107does nothing to prevent bottomless recursion should a function registered
108using
109.Xr atexit 3
110itself call
111.Fn exit .
112Such functions must call
113.Fn _Exit
114instead (although this has other effects as well which may not be desired).
115.Sh RETURN VALUES
116The
117.Fn exit
118and
119.Fn _Exit
120functions
121never return.
122.Sh SEE ALSO
123.Xr _exit 2 ,
124.Xr abort2 2 ,
125.Xr wait 2 ,
126.Xr at_quick_exit 3 ,
127.Xr atexit 3 ,
128.Xr intro 3 ,
129.Xr quick_exit 3 ,
130.Xr sysexits 3 ,
131.Xr tmpfile 3
132.Sh STANDARDS
133The
134.Fn exit
135and
136.Fn _Exit
137functions conform to
138.St -isoC-99 .
139.Sh HISTORY
140The
141.Fn exit
142function appeared in
143.At v1 .
144