Skip to content
Snippets Groups Projects
Commit 50c44800 authored by Dan Egnor's avatar Dan Egnor
Browse files

Stuff.

parent ab306719
No related merge requests found
......@@ -198,7 +198,9 @@ static void sys_on_signal(oop_source *source,int sig,
sigaction(sig,NULL,&act);
sys->sig[sig].old = act;
act.sa_handler = sys_signal_handler;
#ifdef SA_NODEFER /* BSD/OS doesn't have this, for one. */
act.sa_flags &= ~SA_NODEFER;
#endif
sigaction(sig,&act,NULL);
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment