Skip to content

Commit 474fbb5

Browse files
Linkgoronjasnell
authored andcommitted
doc: clarify child_process close event
clarify the 'close' event description in the child_process docs. fixes: #37998 PR-URL: #38181 Fixes: #37998 Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
1 parent eee2c33 commit 474fbb5

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

doc/api/child_process.md

+5-3
Original file line numberDiff line numberDiff line change
@@ -1065,9 +1065,11 @@ added: v0.7.7
10651065
* `code` {number} The exit code if the child exited on its own.
10661066
* `signal` {string} The signal by which the child process was terminated.
10671067

1068-
The `'close'` event is emitted when the stdio streams of a child process have
1069-
been closed. This is distinct from the [`'exit'`][] event, since multiple
1070-
processes might share the same stdio streams.
1068+
The `'close'` event is emitted after a process has ended _and_ the stdio
1069+
streams of a child process have been closed. This is distinct from the
1070+
[`'exit'`][] event, since multiple processes might share the same stdio
1071+
streams. The `'close'` event will always emit after [`'exit'`][] was
1072+
already emitted, or [`'error'`][] if the child failed to spawn.
10711073

10721074
```js
10731075
const { spawn } = require('child_process');

0 commit comments

Comments
 (0)