aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJames McCoy <jamessan@jamessan.com>2018-07-16 10:26:24 -0400
committerGitHub <noreply@github.com>2018-07-16 10:26:24 -0400
commitcd6e7e8cf302f7d2397c89a65a483f9cd543f9dd (patch)
tree1311c45e329c9306d6e6ac6c90ea821cb4d44be3 /src
parentdfe79b67a5621ebd779a40a87a85304ffd89a5af (diff)
parentdee2bf7b52b8841a9281bb80ef98539a421af513 (diff)
downloadrneovim-cd6e7e8cf302f7d2397c89a65a483f9cd543f9dd.tar.gz
rneovim-cd6e7e8cf302f7d2397c89a65a483f9cd543f9dd.tar.bz2
rneovim-cd6e7e8cf302f7d2397c89a65a483f9cd543f9dd.zip
Merge pull request #8743 from dimbleby/multiple-children
Check all child processes for exit in SIGCHLD handler
Diffstat (limited to 'src')
-rw-r--r--src/nvim/os/pty_process_unix.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/nvim/os/pty_process_unix.c b/src/nvim/os/pty_process_unix.c
index 2aeaafe4bd..bafbfe1e4b 100644
--- a/src/nvim/os/pty_process_unix.c
+++ b/src/nvim/os/pty_process_unix.c
@@ -291,6 +291,5 @@ static void chld_handler(uv_signal_t *handle, int signum)
proc->status = WTERMSIG(stat);
}
proc->internal_exit_cb(proc);
- break;
}
}