Skip to content

Commit 8314d9e

Browse files
thefourtheyeitaloacasas
authored andcommitted
doc: killSignal option accepts integer values
`killSignal` option accepts the signal name or signal number as well. PR-URL: #10424 Reviewed-By: Julian Duque <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Sam Roberts <[email protected]>
1 parent 736a7f3 commit 8314d9e

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

doc/api/child_process.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ added: v0.1.90
137137
* `timeout` {Number} (Default: `0`)
138138
* [`maxBuffer`][] {Number} largest amount of data (in bytes) allowed on
139139
stdout or stderr - if exceeded child process is killed (Default: `200*1024`)
140-
* `killSignal` {String} (Default: `'SIGTERM'`)
140+
* `killSignal` {String|Integer} (Default: `'SIGTERM'`)
141141
* `uid` {Number} Sets the user identity of the process. (See setuid(2).)
142142
* `gid` {Number} Sets the group identity of the process. (See setgid(2).)
143143
* `callback` {Function} called with the output when process terminates
@@ -214,7 +214,7 @@ added: v0.1.91
214214
* `timeout` {Number} (Default: `0`)
215215
* [`maxBuffer`][] {Number} largest amount of data (in bytes) allowed on
216216
stdout or stderr - if exceeded child process is killed (Default: `200*1024`)
217-
* `killSignal` {String} (Default: `'SIGTERM'`)
217+
* `killSignal` {String|Integer} (Default: `'SIGTERM'`)
218218
* `uid` {Number} Sets the user identity of the process. (See setuid(2).)
219219
* `gid` {Number} Sets the group identity of the process. (See setgid(2).)
220220
* `callback` {Function} called with the output when process terminates
@@ -591,8 +591,8 @@ added: v0.11.12
591591
* `gid` {Number} Sets the group identity of the process. (See setgid(2).)
592592
* `timeout` {Number} In milliseconds the maximum amount of time the process
593593
is allowed to run. (Default: `undefined`)
594-
* `killSignal` {String} The signal value to be used when the spawned process
595-
will be killed. (Default: `'SIGTERM'`)
594+
* `killSignal` {String|Integer} The signal value to be used when the spawned
595+
process will be killed. (Default: `'SIGTERM'`)
596596
* [`maxBuffer`][] {Number} largest amount of data (in bytes) allowed on
597597
stdout or stderr - if exceeded child process is killed
598598
* `encoding` {String} The encoding used for all stdio inputs and outputs. (Default: `'buffer'`)
@@ -633,8 +633,8 @@ added: v0.11.12
633633
* `gid` {Number} Sets the group identity of the process. (See setgid(2).)
634634
* `timeout` {Number} In milliseconds the maximum amount of time the process
635635
is allowed to run. (Default: `undefined`)
636-
* `killSignal` {String} The signal value to be used when the spawned process
637-
will be killed. (Default: `'SIGTERM'`)
636+
* `killSignal` {String|Integer} The signal value to be used when the spawned
637+
process will be killed. (Default: `'SIGTERM'`)
638638
* [`maxBuffer`][] {Number} largest amount of data (in bytes) allowed on
639639
stdout or stderr - if exceeded child process is killed
640640
* `encoding` {String} The encoding used for all stdio inputs and outputs.
@@ -675,8 +675,8 @@ added: v0.11.12
675675
* `gid` {Number} Sets the group identity of the process. (See setgid(2).)
676676
* `timeout` {Number} In milliseconds the maximum amount of time the process
677677
is allowed to run. (Default: `undefined`)
678-
* `killSignal` {String} The signal value to be used when the spawned process
679-
will be killed. (Default: `'SIGTERM'`)
678+
* `killSignal` {String|Integer} The signal value to be used when the spawned
679+
process will be killed. (Default: `'SIGTERM'`)
680680
* [`maxBuffer`][] {Number} largest amount of data (in bytes) allowed on
681681
stdout or stderr - if exceeded child process is killed
682682
* `encoding` {String} The encoding used for all stdio inputs and outputs.

0 commit comments

Comments
 (0)