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

o change sigprocmask to pthread_sigmask

parent 79a5d301
No related branches found
No related tags found
No related merge requests found
......@@ -80,7 +80,7 @@ unblock_all_signals(void)
error("sigfillset: %m");
return SLURM_ERROR;
}
if (sigprocmask(SIG_UNBLOCK, &set, NULL)) {
if (pthread_sigmask(SIG_UNBLOCK, &set, NULL)) {
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