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

o also block SIGUSR1,SIGUSR2 and SIGALRM in job and session managers

parent 7b632758
No related branches found
No related tags found
No related merge requests found
......@@ -1033,6 +1033,9 @@ _block_most_signals(void)
sigaddset(&set, SIGTSTP);
sigaddset(&set, SIGQUIT);
sigaddset(&set, SIGPIPE);
sigaddset(&set, SIGUSR1);
sigaddset(&set, SIGUSR2);
sigaddset(&set, SIGALRM);
if (sigprocmask(SIG_BLOCK, &set, NULL) < 0) {
error("sigprocmask: %m");
return SLURM_ERROR;
......
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