Skip to content

Commit 75cfc77

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

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

deps/uv/src/unix/process.c

+1-6
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

+1
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)