mirror of
https://github.com/nodejs/node.git
synced 2025-05-09 00:55:45 +00:00

This patch splits the handling of `isMainThread` and `ownsProcessState` from conditionals in `lib/internal/bootstrap/node.js` into different scripts under `lib/internal/bootstrap/switches/`, and call them accordingly from C++ after `node.js` is run. This: - Creates a common denominator of the main thread and the worker thread bootstrap that can be snapshotted and shared by both. - Makes it possible to override the configurations on-the-fly. PR-URL: https://github.com/nodejs/node/pull/30862 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
22 lines
424 B
JavaScript
22 lines
424 B
JavaScript
'use strict';
|
|
|
|
// This file contains process bootstrappers that can only be
|
|
// run in the worker thread.
|
|
|
|
const {
|
|
codes: { ERR_WORKER_UNSUPPORTED_OPERATION }
|
|
} = require('internal/errors');
|
|
|
|
function unavailable(name) {
|
|
function unavailableInWorker() {
|
|
throw new ERR_WORKER_UNSUPPORTED_OPERATION(name);
|
|
}
|
|
|
|
unavailableInWorker.disabled = true;
|
|
return unavailableInWorker;
|
|
}
|
|
|
|
module.exports = {
|
|
unavailable
|
|
};
|