diff options
author | Björn Linse <bjorn.linse@gmail.com> | 2018-03-28 19:07:29 +0200 |
---|---|---|
committer | Bert Belder <bertbelder@gmail.com> | 2018-05-25 15:32:32 -0700 |
commit | 62a0f763a7d1a5bbaa2670b9d2687ba183d2c528 (patch) | |
tree | d206fe0e59f793ee8f88d812816816a28d7def7f /docs/src | |
parent | 02e358fa455c350dbca9c79a650caf7681b491f5 (diff) | |
download | libuv-62a0f763a7d1a5bbaa2670b9d2687ba183d2c528.tar.gz libuv-62a0f763a7d1a5bbaa2670b9d2687ba183d2c528.zip |
win,process: allow child pipe handles to be opened in overlapped mode
PR-URL: https://github.com/libuv/libuv/pull/1784
Reviewed-By: Bartosz Sosnowski <bartosz@janeasystems.com>
Reviewed-By: Bert Belder <bertbelder@gmail.com>
Diffstat (limited to 'docs/src')
-rw-r--r-- | docs/src/process.rst | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/docs/src/process.rst b/docs/src/process.rst index ecc3cbf3..bc968554 100644 --- a/docs/src/process.rst +++ b/docs/src/process.rst @@ -109,6 +109,11 @@ Data types */ UV_READABLE_PIPE = 0x10, UV_WRITABLE_PIPE = 0x20 + /* + * Open the child pipe handle in overlapped mode on Windows. + * On Unix it is silently ignored. + */ + UV_OVERLAPPED_PIPE = 0x40 } uv_stdio_flags; |