diff options
author | Thiago de Arruda <tpadilha84@gmail.com> | 2014-11-07 09:30:44 -0300 |
---|---|---|
committer | Thiago de Arruda <tpadilha84@gmail.com> | 2014-11-07 09:30:44 -0300 |
commit | 6f8c916d8408a89996ce8fbd86e48194b5a46b3e (patch) | |
tree | 98add394ba9ad6711af148a7ac24520cc9e79604 /src | |
parent | f7a468c1e76a1b2fb4ccf436fc9d50174b88b412 (diff) | |
parent | d3f81424e5a8de5d184f3ab3e14b632fa70f857d (diff) | |
download | rneovim-6f8c916d8408a89996ce8fbd86e48194b5a46b3e.tar.gz rneovim-6f8c916d8408a89996ce8fbd86e48194b5a46b3e.tar.bz2 rneovim-6f8c916d8408a89996ce8fbd86e48194b5a46b3e.zip |
Merge PR #1424 'Only force-close stdout/stderr when the job exits'
Diffstat (limited to 'src')
-rw-r--r-- | src/nvim/os/job.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/nvim/os/job.c b/src/nvim/os/job.c index 2f610cb51f..7ae2a86fc2 100644 --- a/src/nvim/os/job.c +++ b/src/nvim/os/job.c @@ -270,10 +270,10 @@ void job_stop(Job *job) } job->stopped_time = os_hrtime(); - // Close the standard streams of the job + // Close the job's stdin. If the job doesn't close it's own stdout/stderr, + // they will be closed when the job exits(possibly due to being terminated + // after a timeout) close_job_in(job); - close_job_out(job); - close_job_err(job); if (!stop_requests++) { // When there's at least one stop request pending, start a timer that |