diff options
author | Timothy J Fontaine <tjfontaine@gmail.com> | 2014-03-10 17:51:47 -0700 |
---|---|---|
committer | Timothy J Fontaine <tjfontaine@gmail.com> | 2014-03-10 17:51:47 -0700 |
commit | e2fcfea46e334743aed24993eeebb2482c6ea762 (patch) | |
tree | 1cc7bf777b99845e9dcf9096b69b15af69d9572d /src/stream_wrap.h | |
parent | d2f2a32b897840d91cf240830ad5cf5f0e33a0c8 (diff) | |
download | node-e2fcfea46e334743aed24993eeebb2482c6ea762.tar.gz |
src: update from uv_read2_start removal
Previously if you wanted to be notified of pending handles for pipes
you needed to use uv_read2_start, however in v0.11.22 you can query for
pending handles independently.
Diffstat (limited to 'src/stream_wrap.h')
-rw-r--r-- | src/stream_wrap.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/stream_wrap.h b/src/stream_wrap.h index 92159fe11..3a7f6f863 100644 --- a/src/stream_wrap.h +++ b/src/stream_wrap.h @@ -178,10 +178,6 @@ class StreamWrap : public HandleWrap { static void OnRead(uv_stream_t* handle, ssize_t nread, const uv_buf_t* buf); - static void OnRead2(uv_pipe_t* handle, - ssize_t nread, - const uv_buf_t* buf, - uv_handle_type pending); static void OnReadCommon(uv_stream_t* handle, ssize_t nread, const uv_buf_t* buf, |