Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTimothy J Fontaine <tjfontaine@gmail.com>2014-03-11 04:51:47 +0400
committerTimothy J Fontaine <tjfontaine@gmail.com>2014-03-11 04:51:47 +0400
commite2fcfea46e334743aed24993eeebb2482c6ea762 (patch)
tree1cc7bf777b99845e9dcf9096b69b15af69d9572d /src/stream_wrap.h
parentd2f2a32b897840d91cf240830ad5cf5f0e33a0c8 (diff)
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.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/stream_wrap.h b/src/stream_wrap.h
index 92159fe1175..3a7f6f86383 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,