Lines Matching refs:exit
118 process.exit(result.status);
159 process.on('exit', () => {
240 child.on('exit', function onExit(exitCode, signal) {
242 `but instead exited with exit code ${exitCode}` +
378 process.on('exit', function() {
408 if (failed.length) process.exit(1);
429 throw new Error('Cannot use common.mustCall*() in process exit handler');
447 // Add the exit listener only once to avoid listener leak warnings
448 if (mustCallChecks.length === 0) process.on('exit', runCallChecks);
590 process.exit(0);
593 // Returns true if the exit code "exitCode" and/or signal name "signal"
594 // represent the exit code and/or signal name of a node process that aborted,
597 // Depending on the compiler used, node will exit with either
598 // exit code 132 (SIGILL), 133 (SIGTRAP) or 134 (SIGABRT).
602 // when a process aborts, KSH exits with an exit code that is
603 // greater than 256, and thus the exit code emitted with the 'exit'
610 // which corresponds to exit code 2147483651 (0x80000003)
612 // raising SIGABRT exiting with ambiguous exit code '3' by default
620 // make V8 exit by aborting or by raising a signal. In any case,
621 // one of them (exit code or signal) needs to be set to one of
622 // the expected exit codes or signals.