Skip to content

Commit

Permalink
uv: Upgrade v0.10.14
Browse files Browse the repository at this point in the history
  • Loading branch information
tjfontaine committed Aug 21, 2013
1 parent 985695e commit e445fbd
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
9 changes: 8 additions & 1 deletion deps/uv/ChangeLog
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@
2013.07.26, Version 0.10.13 (Stable)
2013.08.22, Version 0.10.14 (Stable)

Changes since version 0.10.13:

* unix: retry waitpid() on EINTR (Ben Noordhuis)


2013.07.26, Version 0.10.13 (Stable), 381312e1fe6fecbabc943ccd56f0e7d114b3d064

Changes since version 0.10.12:

Expand Down
4 changes: 3 additions & 1 deletion deps/uv/src/unix/process.c
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,9 @@ static void uv__chld(uv_signal_t* handle, int signum) {
assert(signum == SIGCHLD);

for (;;) {
pid = waitpid(-1, &status, WNOHANG);
do
pid = waitpid(-1, &status, WNOHANG);
while (pid == -1 && errno == EINTR);

if (pid == 0)
return;
Expand Down
2 changes: 1 addition & 1 deletion deps/uv/src/version.c
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@

#define UV_VERSION_MAJOR 0
#define UV_VERSION_MINOR 10
#define UV_VERSION_PATCH 13
#define UV_VERSION_PATCH 14
#define UV_VERSION_IS_RELEASE 1


Expand Down

0 comments on commit e445fbd

Please sign in to comment.