summaryrefslogtreecommitdiff
path: root/lib/tty.js
diff options
context:
space:
mode:
Diffstat (limited to 'lib/tty.js')
-rw-r--r--lib/tty.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/tty.js b/lib/tty.js
index fe0cc2e521..576144e401 100644
--- a/lib/tty.js
+++ b/lib/tty.js
@@ -48,12 +48,12 @@ function WriteStream(fd) {
writable: true
});
- // Prevents interleaved stdout/stderr output in OS X terminals.
+ // Prevents interleaved or dropped stdout/stderr output for terminals.
// As noted in the following reference, local TTYs tend to be quite fast and
// this behaviour has become expected due historical functionality on OS X,
// even though it was originally intended to change in v1.0.2 (Libuv 1.2.1).
// Ref: https://github.com/nodejs/node/pull/1771#issuecomment-119351671
- if (process.platform === 'darwin') this._handle.setBlocking(true);
+ this._handle.setBlocking(process.env.NODE_TTY_UNSAFE_ASYNC !== '1');
var winSize = [];
var err = this._handle.getWindowSize(winSize);