Skip to content

Commit

Permalink
remove SIGABRT from sigwait list (#49445)
Browse files Browse the repository at this point in the history
This already is added to the sigdie list, so on mach it was attempting
to handle it in both places simultaneously.
  • Loading branch information
vtjnash authored Apr 24, 2023
1 parent 2768ec5 commit c70e0fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/signals-unix.c
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit c70e0fa

Please sign in to comment.