summaryrefslogtreecommitdiffstats
path: root/src/structs.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2016-10-27 16:46:53 +0200
committerBram Moolenaar <Bram@vim.org>2016-10-27 16:46:53 +0200
commita350bab042605422304161df462b173ffa31dcb9 (patch)
treef3e517c4894a08995c17c33891d31eff7434c037 /src/structs.h
parent50e5376926dc2ec4a26a7a16f8f0f3213c4afdf0 (diff)
patch 8.0.0048v8.0.0048
Problem: On Windows job_stop() stops cmd.exe, not the processes it runs. (Linwei) Solution: Iterate over all processes and terminate the one where the parent is the job process. (Yasuhiro Matsumoto, closes #1184)
Diffstat (limited to 'src/structs.h')
-rw-r--r--src/structs.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/structs.h b/src/structs.h
index 7a4d7fbe42..bb0fc3a523 100644
--- a/src/structs.h
+++ b/src/structs.h
@@ -1437,7 +1437,6 @@ struct jobvar_S
#endif
#ifdef WIN32
PROCESS_INFORMATION jv_proc_info;
- HANDLE jv_job_object;
#endif
jobstatus_T jv_status;
char_u *jv_stoponexit; /* allocated */