Browse Source

Ignore EAGAIN in stderr dumps.

(Going out of the way to be sync)
v0.7.4-release
Ryan Dahl 15 years ago
parent
commit
3eaaaffadb
  1. 8
      src/node_stdio.cc

8
src/node_stdio.cc

@ -68,7 +68,13 @@ WriteError (const Arguments& args)
size_t written = 0;
while (written < msg.length()) {
r = write(STDERR_FILENO, (*msg) + written, msg.length() - written);
if (r < 0) return ThrowException(errno_exception(errno));
if (r < 0) {
if (errno == EAGAIN || errno == EIO) {
usleep(100);
continue;
}
return ThrowException(errno_exception(errno));
}
written += (size_t)r;
}

Loading…
Cancel
Save