Skip to content
Snippets Groups Projects
Commit cfa0d20c authored by Mark Grondona's avatar Mark Grondona
Browse files

o Also block SIGXCPU in smgr.c

parent 22e7800d
No related branches found
No related tags found
No related merge requests found
......@@ -63,9 +63,10 @@
* *Must be zero-terminated*
*/
static int smgr_sigarray[] = {
SIGINT, SIGTERM, SIGCHLD,
SIGUSR1, SIGUSR2, SIGTSTP,
SIGQUIT, SIGPIPE, SIGALRM, 0
SIGINT, SIGTERM, SIGCHLD, SIGUSR1,
SIGUSR2, SIGTSTP, SIGXCPU,
SIGQUIT, SIGPIPE,
SIGALRM, 0
};
/*
......
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