diff options
author | Bert Belder <bertbelder@gmail.com> | 2012-08-20 18:41:07 +0200 |
---|---|---|
committer | Bert Belder <bertbelder@gmail.com> | 2012-08-20 18:41:31 +0200 |
commit | 6bec5440ebced1bc2b91c1c9f3fbc7a361995331 (patch) | |
tree | c30db69d8ffd4d5dcd2469052308c7003220b2c6 /deps/uv/src/unix/core.c | |
parent | 772b3bf4c806f881528718d1e0240392d0228c19 (diff) | |
download | node-6bec5440ebced1bc2b91c1c9f3fbc7a361995331.tar.gz |
uv: upgrade to 8073a26
Diffstat (limited to 'deps/uv/src/unix/core.c')
-rw-r--r-- | deps/uv/src/unix/core.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/deps/uv/src/unix/core.c b/deps/uv/src/unix/core.c index 4bc6b77d6..7b2617223 100644 --- a/deps/uv/src/unix/core.c +++ b/deps/uv/src/unix/core.c @@ -116,6 +116,10 @@ void uv_close(uv_handle_t* handle, uv_close_cb close_cb) { uv__fs_poll_close((uv_fs_poll_t*)handle); break; + case UV_SIGNAL: + uv__signal_close((uv_signal_t*)handle); + break; + default: assert(0); } @@ -143,6 +147,7 @@ static void uv__finish_close(uv_handle_t* handle) { case UV_FS_EVENT: case UV_FS_POLL: case UV_POLL: + case UV_SIGNAL: break; case UV_NAMED_PIPE: |