From fa8d18a757fa4454a8ad25f5e0fb5e49555e8435 Mon Sep 17 00:00:00 2001 From: Rob Landley Date: Tue, 19 May 2020 02:05:36 -0500 Subject: xsignal_all_killers() should install the handler given to it, and do some refactoring while I was looking at the codepath. --- lib/portability.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'lib/portability.c') diff --git a/lib/portability.c b/lib/portability.c index 26b854d6..8b8f0f3b 100644 --- a/lib/portability.c +++ b/lib/portability.c @@ -452,9 +452,9 @@ void xsignal_all_killers(void *handler) { int i; - for (i=0; signames[i].num != SIGCHLD; i++) - if (signames[i].num != SIGKILL) - xsignal(signames[i].num, handler ? exit_signal : SIG_DFL); + if (!handler) handler = SIG_DFL; + for (i = 0; signames[i].num != SIGCHLD; i++) + if (signames[i].num != SIGKILL) xsignal(signames[i].num, handler); } // Convert a string like "9", "KILL", "SIGHUP", or "SIGRTMIN+2" to a number. -- cgit v1.2.3