Skip to content

Commit 75cfc77

Browse files
committed
Upgrade libuv to f7f518a
1 parent 8c738fa commit 75cfc77

2 files changed

Lines changed: 2 additions & 6 deletions

File tree

deps/uv/src/unix/process.c

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -236,13 +236,8 @@ int uv_spawn(uv_loop_t* loop, uv_process_t* process,
236236
}
237237
while (status == -1 && (errno == EINTR || errno == ENOMEM));
238238

239+
assert((status == 1) && "poll() on pipe read end failed");
239240
uv__close(signal_pipe[0]);
240-
uv__close(signal_pipe[1]);
241-
242-
assert((status == 1)
243-
&& "poll() on pipe read end failed");
244-
assert((pfd.revents & POLLHUP) == POLLHUP
245-
&& "no POLLHUP on pipe read end");
246241
#endif
247242

248243
process->pid = pid;

deps/uv/uv.gyp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -215,6 +215,7 @@
215215
],
216216
'direct_dependent_settings': {
217217
'libraries': [
218+
'-lkstat',
218219
'-lsocket',
219220
'-lnsl',
220221
],

0 commit comments

Comments
 (0)