Skip to content
Snippets Groups Projects
Commit 769b96de authored by Moe Jette's avatar Moe Jette
Browse files

Merge branch 'slurm-2.2'

parents c74e1bfb 43e7394c
No related branches found
No related tags found
No related merge requests found
......@@ -201,6 +201,8 @@ documents those changes that are of interest to users and admins.
* Changes in SLURM 2.2.7
========================
-- Eliminate zombie process created if salloc exits with stopped child
process. Patch from Gerrit Renker, CSCS.
* Changes in SLURM 2.2.6
========================
......
......@@ -476,6 +476,9 @@ relinquish:
if (WIFEXITED(status)) {
rc = WEXITSTATUS(status);
} else if (WIFSTOPPED(status)) {
/* Terminate stopped child process */
_forward_signal(SIGKILL);
} else if (WIFSIGNALED(status)) {
verbose("Command \"%s\" was terminated by signal %d",
command_argv[0], WTERMSIG(status));
......
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