From 2557d0ba47286ed3e868f8ddc9dbed0942fe99dc Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Sat, 2 Jun 2012 21:53:04 -0400 Subject: ensure that abort always works Per POSIX, "The abort() function shall cause abnormal process termination to occur, unless the signal SIGABRT is being caught and the signal handler does not return." If SIGABRT is blocked or if a signal handler is installed and does return, abort is still required to cause abnormal program termination. We cannot use a_crash() to do this, since a SIGILL handler could also be installed (and might even longjmp out of the abort, not expecting to be invoked from within abort), nor can we rely on resetting the signal handler and re-raising the signal (this has race conditions in multi-threaded programs). On the other hand, SIGKILL is a perfectly safe, unblockable way to obtain abnormal program termination, and it requires no ugly loop-and-retry logic. --- src/exit/abort.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/exit/abort.c') diff --git a/src/exit/abort.c b/src/exit/abort.c index 9a1c3d40..c5b9e526 100644 --- a/src/exit/abort.c +++ b/src/exit/abort.c @@ -1,8 +1,10 @@ #include #include +#include "syscall.h" void abort(void) { raise(SIGABRT); + raise(SIGKILL); for (;;); } -- cgit v1.2.1