diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2011-10-10 13:30:10 -0700 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2011-10-10 13:33:45 -0700 |
commit | 7cf787a2d145ef118d983e4df693587a5c78f3ea (patch) | |
tree | 345c0bcdb72191a4226b70b0776430dad9d3fc9f /deps/uv/include/uv-private/uv-unix.h | |
parent | 4f91b72dbe46460888ae45b3eef7707f4a9f1b36 (diff) | |
download | node-new-7cf787a2d145ef118d983e4df693587a5c78f3ea.tar.gz |
Upgrade libuv to 5656e3
This modifies the TTYWrap constructor to add another argument specifying if
it's a readable or writable TTY . That is stdin or stdout. If a TTYWrap is
not readable then writes to it are blocking.
This makes process.stdout blocking.
Diffstat (limited to 'deps/uv/include/uv-private/uv-unix.h')
-rw-r--r-- | deps/uv/include/uv-private/uv-unix.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/deps/uv/include/uv-private/uv-unix.h b/deps/uv/include/uv-private/uv-unix.h index 72709c8a58..0db14e9c7f 100644 --- a/deps/uv/include/uv-private/uv-unix.h +++ b/deps/uv/include/uv-private/uv-unix.h @@ -99,7 +99,8 @@ typedef int uv_file; ngx_queue_t write_completed_queue; \ int delayed_error; \ uv_connection_cb connection_cb; \ - int accepted_fd; + int accepted_fd; \ + int blocking; /* UV_TCP */ |