Skip to content
Snippets Groups Projects
Commit 480a38d4 authored by Sylvain Henry's avatar Sylvain Henry Committed by Marge Bot
Browse files

rts: don't use siginterrupt (#19019)

parent 2895fa60
No related branches found
No related tags found
No related merge requests found
......@@ -680,15 +680,11 @@ initDefaultHandlers(void)
// install the SIGINT handler
action.sa_handler = shutdown_handler;
sigemptyset(&action.sa_mask);
action.sa_flags = 0;
action.sa_flags = 0; // disable SA_RESTART
if (sigaction(SIGINT, &action, &oact) != 0) {
sysErrorBelch("warning: failed to install SIGINT handler");
}
#if defined(HAVE_SIGINTERRUPT)
siginterrupt(SIGINT, 1); // isn't this the default? --SDM
#endif
// install the SIGFPE handler
// In addition to handling SIGINT, also handle SIGFPE by ignoring it.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment