Home
last modified time | relevance | path

Searched refs:killSignal (Results 1 – 15 of 15) sorted by relevance

/third_party/node/test/parallel/
Dtest-child-process-spawn-controller.js19 cp.on('exit', common.mustCall((code, killSignal) => {
21 assert.strictEqual(killSignal, 'SIGTERM');
41 cp.on('exit', common.mustCall((code, killSignal) => {
43 assert.strictEqual(killSignal, 'SIGTERM');
60 cp.on('exit', common.mustCall((code, killSignal) => {
62 assert.strictEqual(killSignal, 'SIGTERM');
79 killSignal: 'SIGKILL', property
82 cp.on('exit', common.mustCall((code, killSignal) => {
84 assert.strictEqual(killSignal, 'SIGKILL');
Dtest-child-process-fork-abort-signal.js16 cp.on('exit', mustCall((code, killSignal) => {
18 strictEqual(killSignal, 'SIGTERM');
33 cp.on('exit', mustCall((code, killSignal) => {
35 strictEqual(killSignal, 'SIGTERM');
49 killSignal: 'SIGKILL', property
51 cp.on('exit', mustCall((code, killSignal) => {
53 strictEqual(killSignal, 'SIGKILL');
Dtest-child-process-spawnsync-kill-signal.js14 function spawn(killSignal, beforeSpawn) { argument
23 { killSignal, timeout: 100 }); property
39 assert.strictEqual(opts.killSignal, undefined);
48 assert.strictEqual(opts.killSignal, SIGKILL);
59 assert.strictEqual(opts.killSignal, SIGKILL);
Dtest-child-process-exec-kill-throws.js22 const options = { maxBuffer: 0, killSignal: 'SIGKILL' }; property
Dtest-child-process-fork-timeout-kill-signal.js25 killSignal: 'SIGKILL', property
Dtest-child-process-spawn-timeout-kill-signal.js23 killSignal: 'SIGKILL', property
Dtest-child-process-exec-timeout.js43 killSignal: 'SIGKILL' property
/third_party/node/lib/
Dchild_process.js296 killSignal: 'SIGTERM', property
309 options.killSignal = sanitizeKillSignal(options.killSignal);
414 child.kill(options.killSignal);
617 function abortChildProcess(child, killSignal) { argument
621 if (child.kill(killSignal)) {
656 const killSignal = sanitizeKillSignal(options.killSignal);
671 abortChildProcess(child, killSignal);
683 child.kill(killSignal);
747 options.killSignal = sanitizeKillSignal(options.killSignal);
888 function sanitizeKillSignal(killSignal) { argument
[all …]
/third_party/node/deps/npm/node_modules/execa/
Dreadme.md219 If timeout is greater than `0`, the parent will send the signal identified by the `killSignal` prop…
228 #### killSignal subsubsection
Dindex.js165 spawned.kill(parsed.opts.killSignal);
/third_party/node/doc/api/
Dchild_process.md177 * `killSignal` {string|integer} **Default:** `'SIGTERM'`
235 identified by the `killSignal` property (the default is `'SIGTERM'`) if the
301 * `killSignal` {string|integer} **Default:** `'SIGTERM'`
394 description: killSignal for AbortSignal was added.
428 * `killSignal` {string|integer} The signal value to be used when the spawned
507 description: killSignal for AbortSignal was added.
557 * `killSignal` {string|integer} The signal value to be used when the spawned
894 * `killSignal` {string|integer} The signal value to be used when the spawned
912 encountered and `killSignal` is sent, the method won't return until the process
964 * `killSignal` {string|integer} The signal value to be used when the spawned
[all …]
/third_party/node/doc/changelogs/
DCHANGELOG_V4.md507 * [[`8eeccd82d2`](https://github.com/nodejs/node/commit/8eeccd82d2)] - **doc**: killSignal option a…
956 …dejs/node/commit/51b251d8eb)] - **test**: add coverage for spawnSync() killSignal (cjihrig) [#8960…
DCHANGELOG_V7.md1043 * [[`8314d9ee73`](https://github.com/nodejs/node/commit/8314d9ee73)] - **doc**: killSignal option a…
DCHANGELOG_V6.md2635 * [[`78b83e7249`](https://github.com/nodejs/node/commit/78b83e7249)] - **doc**: killSignal option a…
3510 …dejs/node/commit/56951b4367)] - **test**: add coverage for spawnSync() killSignal (cjihrig) [#8960…
DCHANGELOG_V8.md4333 …de/commit/d75fdd96aa)] - **(SEMVER-MAJOR)** **child_process**: improve killSignal validations (Sak…