Skip to content
This repository has been archived by the owner on Apr 22, 2023. It is now read-only.

Commit

Permalink
Upgrade libuv to f7f518a
Browse files Browse the repository at this point in the history
  • Loading branch information
ry committed Oct 11, 2011
1 parent 8c738fa commit 75cfc77
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
7 changes: 1 addition & 6 deletions deps/uv/src/unix/process.c
Expand Up @@ -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;
Expand Down
1 change: 1 addition & 0 deletions deps/uv/uv.gyp
Expand Up @@ -215,6 +215,7 @@
],
'direct_dependent_settings': {
'libraries': [
'-lkstat',
'-lsocket',
'-lnsl',
],
Expand Down

0 comments on commit 75cfc77

Please sign in to comment.