Blame man3/abort.3

Packit 7cfc04
.\" Copyright 2007 (C) Michael Kerrisk <mtk.manpages@gmail.com>
Packit 7cfc04
.\" some parts Copyright 1993 David Metcalfe (david@prism.demon.co.uk)
Packit 7cfc04
.\"
Packit 7cfc04
.\" %%%LICENSE_START(VERBATIM)
Packit 7cfc04
.\" Permission is granted to make and distribute verbatim copies of this
Packit 7cfc04
.\" manual provided the copyright notice and this permission notice are
Packit 7cfc04
.\" preserved on all copies.
Packit 7cfc04
.\"
Packit 7cfc04
.\" Permission is granted to copy and distribute modified versions of this
Packit 7cfc04
.\" manual under the conditions for verbatim copying, provided that the
Packit 7cfc04
.\" entire resulting derived work is distributed under the terms of a
Packit 7cfc04
.\" permission notice identical to this one.
Packit 7cfc04
.\"
Packit 7cfc04
.\" Since the Linux kernel and libraries are constantly changing, this
Packit 7cfc04
.\" manual page may be incorrect or out-of-date.  The author(s) assume no
Packit 7cfc04
.\" responsibility for errors or omissions, or for damages resulting from
Packit 7cfc04
.\" the use of the information contained herein.  The author(s) may not
Packit 7cfc04
.\" have taken the same level of care in the production of this manual,
Packit 7cfc04
.\" which is licensed free of charge, as they might when working
Packit 7cfc04
.\" professionally.
Packit 7cfc04
.\"
Packit 7cfc04
.\" Formatted or processed versions of this manual, if unaccompanied by
Packit 7cfc04
.\" the source, must acknowledge the copyright and authors of this work.
Packit 7cfc04
.\" %%%LICENSE_END
Packit 7cfc04
.\"
Packit 7cfc04
.\" References consulted:
Packit 7cfc04
.\"     Linux libc source code
Packit 7cfc04
.\"     Lewine's _POSIX Programmer's Guide_ (O'Reilly & Associates, 1991)
Packit 7cfc04
.\"     386BSD man pages
Packit 7cfc04
.\" Modified Sat Jul 24 21:46:21 1993 by Rik Faith (faith@cs.unc.edu)
Packit 7cfc04
.\" Modified Fri Aug  4 10:51:53 2000 - patch from Joseph S. Myers
Packit 7cfc04
.\" 2007-12-15, mtk, Mostly rewritten
Packit 7cfc04
.\"
Packit 7cfc04
.TH ABORT 3  2017-11-26 "GNU" "Linux Programmer's Manual"
Packit 7cfc04
.SH NAME
Packit 7cfc04
abort \- cause abnormal process termination
Packit 7cfc04
.SH SYNOPSIS
Packit 7cfc04
.nf
Packit 7cfc04
.B #include <stdlib.h>
Packit 7cfc04
.PP
Packit 7cfc04
.B void abort(void);
Packit 7cfc04
.fi
Packit 7cfc04
.SH DESCRIPTION
Packit 7cfc04
The
Packit 7cfc04
.BR abort ()
Packit 7cfc04
first unblocks the
Packit 7cfc04
.B SIGABRT
Packit 7cfc04
signal, and then raises that signal for the calling process
Packit 7cfc04
(as though
Packit 7cfc04
.BR raise (3)
Packit 7cfc04
was called).
Packit 7cfc04
This results in the abnormal termination of the process unless the
Packit 7cfc04
.B SIGABRT
Packit 7cfc04
signal is caught and the signal handler does not return
Packit 7cfc04
(see
Packit 7cfc04
.BR longjmp (3)).
Packit 7cfc04
.PP
Packit 7cfc04
If the
Packit 7cfc04
.B SIGABRT
Packit 7cfc04
signal is ignored, or caught by a handler that returns, the
Packit 7cfc04
.BR abort ()
Packit 7cfc04
function will still terminate the process.
Packit 7cfc04
It does this by restoring the default disposition for
Packit 7cfc04
.B SIGABRT
Packit 7cfc04
and then raising the signal for a second time.
Packit 7cfc04
.SH RETURN VALUE
Packit 7cfc04
The
Packit 7cfc04
.BR abort ()
Packit 7cfc04
function never returns.
Packit 7cfc04
.SH ATTRIBUTES
Packit 7cfc04
For an explanation of the terms used in this section, see
Packit 7cfc04
.BR attributes (7).
Packit 7cfc04
.TS
Packit 7cfc04
allbox;
Packit 7cfc04
lb lb lb
Packit 7cfc04
l l l.
Packit 7cfc04
Interface	Attribute	Value
Packit 7cfc04
T{
Packit 7cfc04
.BR abort ()
Packit 7cfc04
T}	Thread safety	MT-Safe
Packit 7cfc04
.TE
Packit 7cfc04
.SH NOTES
Packit 7cfc04
Up until glibc 2.26,
Packit 7cfc04
if the
Packit 7cfc04
.BR abort ()
Packit 7cfc04
function caused process termination,
Packit 7cfc04
all open streams were closed and flushed (as with
Packit 7cfc04
.BR fclose (3)).
Packit 7cfc04
However, in some cases this could result in deadlocks and data corruption.
Packit 7cfc04
Therefore, starting with glibc 2.27,
Packit 7cfc04
.\" glibc commit 91e7cf982d0104f0e71770f5ae8e3faf352dea9f
Packit 7cfc04
.BR abort ()
Packit 7cfc04
terminates the process without flushing streams.
Packit 7cfc04
POSIX.1 permits either possible behavior, saying that
Packit 7cfc04
.BR abort ()
Packit 7cfc04
"may include an attempt to effect fclose() on all open streams".
Packit 7cfc04
.SH CONFORMING TO
Packit 7cfc04
SVr4, POSIX.1-2001, POSIX.1-2008, 4.3BSD, C89, C99.
Packit 7cfc04
.SH SEE ALSO
Packit 7cfc04
.BR gdb (1),
Packit 7cfc04
.BR sigaction (2),
Packit 7cfc04
.BR assert (3),
Packit 7cfc04
.BR exit (3),
Packit 7cfc04
.BR longjmp (3),
Packit 7cfc04
.BR raise (3)
Packit 7cfc04
.SH COLOPHON
Packit 7cfc04
This page is part of release 4.15 of the Linux
Packit 7cfc04
.I man-pages
Packit 7cfc04
project.
Packit 7cfc04
A description of the project,
Packit 7cfc04
information about reporting bugs,
Packit 7cfc04
and the latest version of this page,
Packit 7cfc04
can be found at
Packit 7cfc04
\%https://www.kernel.org/doc/man\-pages/.