ext/libuv/docs/src/pipe.rst in libuv-1.3.0 vs ext/libuv/docs/src/pipe.rst in libuv-2.0.0

- old
+ new

@@ -27,15 +27,15 @@ API --- -.. c:function:: int uv_pipe_init(uv_loop_t*, uv_pipe_t* handle, int ipc) +.. c:function:: int uv_pipe_init(uv_loop_t* loop, uv_pipe_t* handle, int ipc) Initialize a pipe handle. The `ipc` argument is a boolean to indicate if this pipe will be used for handle passing between processes. -.. c:function:: int uv_pipe_open(uv_pipe_t*, uv_file file) +.. c:function:: int uv_pipe_open(uv_pipe_t* handle, uv_file file) Open an existing file descriptor or HANDLE as a pipe. .. versionchanged:: 1.2.1 the file descriptor is set to non-blocking mode.