comparison src/structs.h @ 8455:d0717262d802 v7.4.1518

commit https://github.com/vim/vim/commit/f65333c9b59654a70f2a07200f65c93dfcaa49b3 Author: Bram Moolenaar <Bram@vim.org> Date: Tue Mar 8 18:27:21 2016 +0100 patch 7.4.1518 Problem: Channel with disconnected in/out/err is not supported. Solution: Implement it for Unix.
author Christian Brabandt <cb@256bit.org>
date Tue, 08 Mar 2016 18:30:05 +0100
parents 5d2c84be23b5
children c08c6d19db4d
comparison
equal deleted inserted replaced
8454:41802f51dbb4 8455:d0717262d802
1415 #define JO_CB_ALL \ 1415 #define JO_CB_ALL \
1416 (JO_CALLBACK + JO_OUT_CALLBACK + JO_ERR_CALLBACK + JO_CLOSE_CALLBACK) 1416 (JO_CALLBACK + JO_OUT_CALLBACK + JO_ERR_CALLBACK + JO_CLOSE_CALLBACK)
1417 #define JO_TIMEOUT_ALL (JO_TIMEOUT + JO_OUT_TIMEOUT + JO_ERR_TIMEOUT) 1417 #define JO_TIMEOUT_ALL (JO_TIMEOUT + JO_OUT_TIMEOUT + JO_ERR_TIMEOUT)
1418 1418
1419 typedef enum { 1419 typedef enum {
1420 JIO_PIPE, /* default */
1420 JIO_NULL, 1421 JIO_NULL,
1421 JIO_PIPE,
1422 JIO_FILE, 1422 JIO_FILE,
1423 JIO_BUFFER, 1423 JIO_BUFFER,
1424 JIO_OUT 1424 JIO_OUT
1425 } job_io_T; 1425 } job_io_T;
1426 1426