summaryrefslogtreecommitdiff
path: root/deps/uv/docs
diff options
context:
space:
mode:
authorSaúl Ibarra Corretgé <saghul@gmail.com>2015-02-09 21:16:26 +0100
committerBen Noordhuis <info@bnoordhuis.nl>2015-02-09 22:07:25 +0100
commit9681fcacf0fd477f999a52f6ff4151d4125d49d0 (patch)
treeb8a3a583daacf82af5b5298961e145b836fa8bfb /deps/uv/docs
parent5e825d1073b57a87fc9a77751ed3e21c86970082 (diff)
downloadandroid-node-v8-9681fcacf0fd477f999a52f6ff4151d4125d49d0.tar.gz
android-node-v8-9681fcacf0fd477f999a52f6ff4151d4125d49d0.tar.bz2
android-node-v8-9681fcacf0fd477f999a52f6ff4151d4125d49d0.zip
deps: update libuv to 1.4.0
PR-URL: https://github.com/iojs/io.js/pull/773 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Diffstat (limited to 'deps/uv/docs')
-rw-r--r--deps/uv/docs/src/stream.rst6
1 files changed, 4 insertions, 2 deletions
diff --git a/deps/uv/docs/src/stream.rst b/deps/uv/docs/src/stream.rst
index 2c669cf041..1f6682adc1 100644
--- a/deps/uv/docs/src/stream.rst
+++ b/deps/uv/docs/src/stream.rst
@@ -206,12 +206,14 @@ API
Relying too much on this API is not recommended. It is likely to change
significantly in the future.
- Currently this only works on Windows and only for
- :c:type:`uv_pipe_t` handles.
+ Currently only works on Windows for :c:type:`uv_pipe_t` handles.
+ On UNIX platforms, all :c:type:`uv_stream_t` handles are supported.
Also libuv currently makes no ordering guarantee when the blocking mode
is changed after write requests have already been submitted. Therefore it is
recommended to set the blocking mode immediately after opening or creating
the stream.
+ .. versionchanged:: 1.4.0 UNIX implementation added.
+
.. seealso:: The :c:type:`uv_handle_t` API functions also apply.