comparison src/structs.h @ 15711:287104a1d51e v8.1.0863

patch 8.1.0863: cannot see what signal caused a job to end commit https://github.com/vim/vim/commit/b3051ce82f2e8af95ce3b6a41867f70aee5ecc82 Author: Bram Moolenaar <Bram@vim.org> Date: Thu Jan 31 15:52:11 2019 +0100 patch 8.1.0863: cannot see what signal caused a job to end Problem: Cannot see what signal caused a job to end. Solution: Add "termsig" to job_info(). (Ozaki Kiichi, closes https://github.com/vim/vim/issues/3786)
author Bram Moolenaar <Bram@vim.org>
date Thu, 31 Jan 2019 16:00:06 +0100
parents 6f1c7e9a6393
children ad8b2c109b22
comparison
equal deleted inserted replaced
15710:83f00bd3ddb0 15711:287104a1d51e
1548 HANDLE jv_job_object; 1548 HANDLE jv_job_object;
1549 #endif 1549 #endif
1550 char_u *jv_tty_in; /* controlling tty input, allocated */ 1550 char_u *jv_tty_in; /* controlling tty input, allocated */
1551 char_u *jv_tty_out; /* controlling tty output, allocated */ 1551 char_u *jv_tty_out; /* controlling tty output, allocated */
1552 jobstatus_T jv_status; 1552 jobstatus_T jv_status;
1553 char_u *jv_stoponexit; /* allocated */ 1553 char_u *jv_stoponexit; /* allocated */
1554 #ifdef UNIX
1555 char_u *jv_termsig; /* allocated */
1556 #endif
1554 int jv_exitval; 1557 int jv_exitval;
1555 char_u *jv_exit_cb; /* allocated */ 1558 char_u *jv_exit_cb; /* allocated */
1556 partial_T *jv_exit_partial; 1559 partial_T *jv_exit_partial;
1557 1560
1558 buf_T *jv_in_buf; /* buffer from "in-name" */ 1561 buf_T *jv_in_buf; /* buffer from "in-name" */