/third_party/node/test/parallel/ |
D | test-child-process-spawn-controller.js | 19 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');
|
D | test-child-process-fork-abort-signal.js | 16 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');
|
D | test-child-process-spawnsync-kill-signal.js | 14 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);
|
D | test-child-process-exec-kill-throws.js | 22 const options = { maxBuffer: 0, killSignal: 'SIGKILL' }; property
|
D | test-child-process-fork-timeout-kill-signal.js | 25 killSignal: 'SIGKILL', property
|
D | test-child-process-spawn-timeout-kill-signal.js | 23 killSignal: 'SIGKILL', property
|
D | test-child-process-exec-timeout.js | 43 killSignal: 'SIGKILL' property
|
/third_party/node/lib/ |
D | child_process.js | 296 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/ |
D | readme.md | 219 If timeout is greater than `0`, the parent will send the signal identified by the `killSignal` prop… 228 #### killSignal subsubsection
|
D | index.js | 165 spawned.kill(parsed.opts.killSignal);
|
/third_party/node/doc/api/ |
D | child_process.md | 177 * `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/ |
D | CHANGELOG_V4.md | 507 * [[`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…
|
D | CHANGELOG_V7.md | 1043 * [[`8314d9ee73`](https://github.com/nodejs/node/commit/8314d9ee73)] - **doc**: killSignal option a…
|
D | CHANGELOG_V6.md | 2635 * [[`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…
|
D | CHANGELOG_V8.md | 4333 …de/commit/d75fdd96aa)] - **(SEMVER-MAJOR)** **child_process**: improve killSignal validations (Sak…
|