Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion orte/mca/odls/base/odls_base_default_fns.c
Original file line number Diff line number Diff line change
Expand Up @@ -1947,7 +1947,12 @@ int orte_odls_base_default_kill_local_procs(opal_pointer_array_t *procs,
"%s SENDING SIGKILL TO %s",
ORTE_NAME_PRINT(ORTE_PROC_MY_NAME),
ORTE_NAME_PRINT(&cd->child->name)));
kill_local(cd->child->pid, SIGKILL);
/* Send signal to the negative of the PID to send the signal to all
* of the children of that PID - the process group under it.
* Otherwise it is delivered to only that PID.
*/
kill_local(cd->child->pid * -1, SIGKILL);

/* indicate the waitpid fired as this is effectively what
* has happened
*/
Expand Down