]> granicus.if.org Git - vim/commitdiff
patch 7.4.1294 v7.4.1294
authorBram Moolenaar <Bram@vim.org>
Tue, 9 Feb 2016 10:37:50 +0000 (11:37 +0100)
committerBram Moolenaar <Bram@vim.org>
Tue, 9 Feb 2016 10:37:50 +0000 (11:37 +0100)
Problem:    job_stop() only kills the started process.
Solution:   Send the signal to the process group. (Olaf Dabrunz)

src/os_unix.c
src/version.c

index a0e5ed0bc6e4019f7db727192767d5f7059ff19d..17bb32268d7bf86d6b12df08916fd0cea47d968a 100644 (file)
@@ -3920,6 +3920,11 @@ wait4pid(pid_t child, waitstatus *status)
 }
 
 #if defined(FEAT_JOB) || !defined(USE_SYSTEM) || defined(PROTO)
+/*
+ * Parse "cmd" and put the white-separated parts in "argv".
+ * "argv" is an allocated array with "argc" entries.
+ * Returns FAIL when out of memory.
+ */
     int
 mch_parse_cmd(char_u *cmd, int use_shcf, char ***argv, int *argc)
 {
@@ -5107,7 +5112,8 @@ mch_stop_job(job_T *job, char_u *how)
        sig = atoi((char *)how);
     else
        return FAIL;
-    kill(job->jv_pid, sig);
+    /* TODO: have an option to only kill the process, not the group? */
+    kill(-job->jv_pid, sig);
     return OK;
 }
 #endif
index b5bf05ea0f84bbc7ee3580ff1e5b20296838f4ce..1be6854fdca8e5e31d95bfe7a54fd308d37de7af 100644 (file)
@@ -747,6 +747,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    1294,
 /**/
     1293,
 /**/