Skip to content

Commit e445fbd

Browse files
committed
uv: Upgrade v0.10.14
1 parent 985695e commit e445fbd

3 files changed

Lines changed: 12 additions & 3 deletions

File tree

deps/uv/ChangeLog

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
1-
2013.07.26, Version 0.10.13 (Stable)
1+
2013.08.22, Version 0.10.14 (Stable)
2+
3+
Changes since version 0.10.13:
4+
5+
* unix: retry waitpid() on EINTR (Ben Noordhuis)
6+
7+
8+
2013.07.26, Version 0.10.13 (Stable), 381312e1fe6fecbabc943ccd56f0e7d114b3d064
29

310
Changes since version 0.10.12:
411

deps/uv/src/unix/process.c

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,9 @@ static void uv__chld(uv_signal_t* handle, int signum) {
7373
assert(signum == SIGCHLD);
7474

7575
for (;;) {
76-
pid = waitpid(-1, &status, WNOHANG);
76+
do
77+
pid = waitpid(-1, &status, WNOHANG);
78+
while (pid == -1 && errno == EINTR);
7779

7880
if (pid == 0)
7981
return;

deps/uv/src/version.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434

3535
#define UV_VERSION_MAJOR 0
3636
#define UV_VERSION_MINOR 10
37-
#define UV_VERSION_PATCH 13
37+
#define UV_VERSION_PATCH 14
3838
#define UV_VERSION_IS_RELEASE 1
3939

4040

0 commit comments

Comments
 (0)