diff options
-rw-r--r-- | src/nvim/os/job.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/nvim/os/job.c b/src/nvim/os/job.c index 4769ee4d2f..f9bde21361 100644 --- a/src/nvim/os/job.c +++ b/src/nvim/os/job.c @@ -445,11 +445,6 @@ static void chld_handler(uv_signal_t *handle, int signum) return; } - if (WIFSTOPPED(stat) || WIFCONTINUED(stat)) { - // Only care for processes that exited - return; - } - Job *job = NULL; // find the job corresponding to the exited pid for (int i = 0; i < MAX_RUNNING_JOBS; i++) { |