Skip to content

Commit 6eece77

Browse files
tanujasawantjasnell
authored andcommitted
child_process: update outdated comment
PR-URL: #8988 Reviewed-By: James M Snell <[email protected]>
1 parent 6f1cae7 commit 6eece77

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/child_process.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,8 @@ exports.fork = function(modulePath /*, args, options*/) {
5050
args = execArgv.concat([modulePath], args);
5151

5252
if (!Array.isArray(options.stdio)) {
53-
// Leave stdin open for the IPC channel. stdout and stderr should be the
54-
// same as the parent's if silent isn't set.
53+
// Use a separate fd=3 for the IPC channel. Inherit stdin, stdout,
54+
// and stderr from the parent if silent isn't set.
5555
options.stdio = options.silent ? ['pipe', 'pipe', 'pipe', 'ipc'] :
5656
[0, 1, 2, 'ipc'];
5757
} else if (options.stdio.indexOf('ipc') === -1) {

0 commit comments

Comments
 (0)