From 97792de2762cc79cc365a8a0b858f27753179577 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Sat, 15 Oct 2016 18:36:49 +0200 Subject: 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) --- src/proto/os_unix.pro | 1 + src/proto/os_win32.pro | 1 + 2 files changed, 2 insertions(+) (limited to 'src/proto') 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); -- cgit v1.2.3