From 835fbeee002779fbd164f9af6f8392c4d5373dfd Mon Sep 17 00:00:00 2001 From: Tanuja-Sawant Date: Sun, 9 Oct 2016 15:06:38 +0530 Subject: [PATCH] child_process: update outdated comment PR-URL: https://github.com/nodejs/node/pull/8988/ Reviewed-By: James M Snell --- lib/child_process.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/child_process.js b/lib/child_process.js index a7815ac85c3bbf..3cc6e2ce6a944e 100644 --- a/lib/child_process.js +++ b/lib/child_process.js @@ -50,8 +50,8 @@ exports.fork = function(modulePath /*, args, options*/) { args = execArgv.concat([modulePath], args); if (!Array.isArray(options.stdio)) { - // Leave stdin open for the IPC channel. stdout and stderr should be the - // same as the parent's if silent isn't set. + // Use a separate fd=3 for the IPC channel. Inherit stdin, stdout, + // and stderr from the parent if silent isn't set. options.stdio = options.silent ? ['pipe', 'pipe', 'pipe', 'ipc'] : [0, 1, 2, 'ipc']; } else if (options.stdio.indexOf('ipc') === -1) {