diff options
author | James McCoy <jamessan@jamessan.com> | 2018-07-16 10:26:24 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-16 10:26:24 -0400 |
commit | cd6e7e8cf302f7d2397c89a65a483f9cd543f9dd (patch) | |
tree | 1311c45e329c9306d6e6ac6c90ea821cb4d44be3 | |
parent | dfe79b67a5621ebd779a40a87a85304ffd89a5af (diff) | |
parent | dee2bf7b52b8841a9281bb80ef98539a421af513 (diff) | |
download | rneovim-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
-rw-r--r-- | src/nvim/os/pty_process_unix.c | 1 |
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; } } |