diff options
| author | erw7 <erw7.github@gmail.com> | 2020-02-05 16:04:45 +0900 |
|---|---|---|
| committer | erw7 <erw7.github@gmail.com> | 2020-06-10 22:21:14 +0900 |
| commit | d17e38e48209c19b63d809c5b807613f15aa03c8 (patch) | |
| tree | d65d1445fcf8befb2ea556b180bd3d05019f7bc1 /src/nvim/event/process.h | |
| parent | d8c5d122f1ba95bc71a78c5d70465bfa88623bd7 (diff) | |
| download | rneovim-d17e38e48209c19b63d809c5b807613f15aa03c8.tar.gz rneovim-d17e38e48209c19b63d809c5b807613f15aa03c8.tar.bz2 rneovim-d17e38e48209c19b63d809c5b807613f15aa03c8.zip | |
Add overlapped option to jobstart
When UV_OVERLAPPED_PIPE was used for the pipe passed to the child process, a
problem occurred with the standard input of the .Net Framework application
(#11809). Therefore, add the overlapped option to jobstart() and change it so
that it is set only when necessary
Diffstat (limited to 'src/nvim/event/process.h')
| -rw-r--r-- | src/nvim/event/process.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/event/process.h b/src/nvim/event/process.h index b677b80bfe..84e81238e9 100644 --- a/src/nvim/event/process.h +++ b/src/nvim/event/process.h @@ -27,7 +27,7 @@ struct process { Stream in, out, err; process_exit_cb cb; internal_process_cb internal_exit_cb, internal_close_cb; - bool closed, detach; + bool closed, detach, overlapped; MultiQueue *events; }; |