diff options
author | Bram Moolenaar <Bram@vim.org> | 2016-10-15 18:36:49 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2016-10-15 18:36:49 +0200 |
commit | 97792de2762cc79cc365a8a0b858f27753179577 (patch) | |
tree | 6a9b69f2cabc6135b91c7dfaed7c69a9a7c0419f /src/proto/os_unix.pro | |
parent | 472e85970ee3a80abd824bef510df12e9cfe9e96 (diff) | |
download | vim-git-97792de2762cc79cc365a8a0b858f27753179577.tar.gz |
patch 8.0.0036v8.0.0036
Problem: Detecting that a job has finished may take a while.
Solution: Check for a finished job more often (Ozaki Kiichi)
Diffstat (limited to 'src/proto/os_unix.pro')
-rw-r--r-- | src/proto/os_unix.pro | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/proto/os_unix.pro b/src/proto/os_unix.pro index b1e9b8e29..700b69ef2 100644 --- a/src/proto/os_unix.pro +++ b/src/proto/os_unix.pro @@ -59,6 +59,7 @@ int mch_parse_cmd(char_u *cmd, int use_shcf, char ***argv, int *argc); int mch_call_shell(char_u *cmd, int options); void mch_start_job(char **argv, job_T *job, jobopt_T *options); char *mch_job_status(job_T *job); +job_T *mch_detect_ended_job(job_T *job_list); int mch_stop_job(job_T *job, char_u *how); void mch_clear_job(job_T *job); void mch_breakcheck(int force); |