Upgrade libuv to f7f518a

pull/23362/head
Ryan Dahl 2011-10-10 17:05:18 -07:00
parent 8c738fa90c
commit 75cfc77527
2 changed files with 2 additions and 6 deletions

View File

@ -236,13 +236,8 @@ int uv_spawn(uv_loop_t* loop, uv_process_t* process,
}
while (status == -1 && (errno == EINTR || errno == ENOMEM));
assert((status == 1) && "poll() on pipe read end failed");
uv__close(signal_pipe[0]);
uv__close(signal_pipe[1]);
assert((status == 1)
&& "poll() on pipe read end failed");
assert((pfd.revents & POLLHUP) == POLLHUP
&& "no POLLHUP on pipe read end");
#endif
process->pid = pid;

1
deps/uv/uv.gyp vendored
View File

@ -215,6 +215,7 @@
],
'direct_dependent_settings': {
'libraries': [
'-lkstat',
'-lsocket',
'-lnsl',
],