mirror of
https://github.com/nodejs/node.git
synced 2025-05-10 19:17:56 +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>
19 lines
751 B
JavaScript
19 lines
751 B
JavaScript
'use strict';
|
|
|
|
const credentials = internalBinding('credentials');
|
|
|
|
if (credentials.implementsPosixCredentials) {
|
|
// TODO: this should be detached from ERR_WORKER_UNSUPPORTED_OPERATION
|
|
const { unavailable } = require('internal/process/worker_thread_only');
|
|
|
|
process.initgroups = unavailable('process.initgroups()');
|
|
process.setgroups = unavailable('process.setgroups()');
|
|
process.setegid = unavailable('process.setegid()');
|
|
process.seteuid = unavailable('process.seteuid()');
|
|
process.setgid = unavailable('process.setgid()');
|
|
process.setuid = unavailable('process.setuid()');
|
|
}
|
|
|
|
// ---- keep the attachment of the wrappers above so that it's easier to ----
|
|
// ---- compare the setups side-by-side -----
|