From c70e0fa552d64e807ca5b82b322d610b2ba6e490 Mon Sep 17 00:00:00 2001 From: Jameson Nash Date: Mon, 24 Apr 2023 18:47:36 -0400 Subject: [PATCH] remove SIGABRT from sigwait list (#49445) This already is added to the sigdie list, so on mach it was attempting to handle it in both places simultaneously. --- src/signals-unix.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/signals-unix.c b/src/signals-unix.c index 79300567b4bce..2858538372722 100644 --- a/src/signals-unix.c +++ b/src/signals-unix.c @@ -645,7 +645,7 @@ void jl_install_thread_signal_handler(jl_ptls_t ptls) } const static int sigwait_sigs[] = { - SIGINT, SIGTERM, SIGABRT, SIGQUIT, + SIGINT, SIGTERM, SIGQUIT, #ifdef SIGINFO SIGINFO, #else