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 | |
parent | 472e85970ee3a80abd824bef510df12e9cfe9e96 (diff) | |
download | vim-97792de2762cc79cc365a8a0b858f27753179577.zip |
patch 8.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')
-rw-r--r-- | src/proto/os_unix.pro | 1 | ||||
-rw-r--r-- | src/proto/os_win32.pro | 1 |
2 files changed, 2 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); diff --git a/src/proto/os_win32.pro b/src/proto/os_win32.pro index b76e3474b..b21a7ba33 100644 --- a/src/proto/os_win32.pro +++ b/src/proto/os_win32.pro @@ -41,6 +41,7 @@ void mch_set_winsize_now(void); int mch_call_shell(char_u *cmd, int options); void mch_start_job(char *cmd, 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_set_normal_colors(void); |