We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b76fd9f commit 3054c68Copy full SHA for 3054c68
src/signals-unix.c
@@ -1208,7 +1208,7 @@ void jl_install_default_signal_handlers(void)
1208
memset(&act, 0, sizeof(struct sigaction));
1209
sigemptyset(&act.sa_mask);
1210
act.sa_sigaction = usr2_handler;
1211
- act.sa_flags = SA_ONSTACK | SA_SIGINFO | SA_RESTART;
+ act.sa_flags = SA_SIGINFO | SA_RESTART;
1212
if (sigaction(SIGUSR2, &act, NULL) < 0) {
1213
jl_errorf("fatal error: sigaction: %s", strerror(errno));
1214
}
0 commit comments