Skip to content

Commit 55d185f

Browse files
brieteBridgeAR
authored andcommitted
os: move process.binding('os') to internalBinding
PR-URL: #25087 Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: James M Snell <[email protected]>
1 parent 65c136f commit 55d185f

File tree

5 files changed

+9
-3
lines changed

5 files changed

+9
-3
lines changed

lib/internal/bootstrap/loaders.js

+1
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,7 @@
8787
'icu',
8888
'js_stream',
8989
'natives',
90+
'os',
9091
'pipe_wrap',
9192
'process_wrap',
9293
'signal_wrap',

lib/os.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ const {
4444
getUptime,
4545
isBigEndian,
4646
setPriority: _setPriority
47-
} = process.binding('os');
47+
} = internalBinding('os');
4848

4949
function getCheckedFunction(fn) {
5050
return function checkError(...args) {

src/node_os.cc

+1-1
Original file line numberDiff line numberDiff line change
@@ -467,4 +467,4 @@ void Initialize(Local<Object> target,
467467
} // namespace os
468468
} // namespace node
469469

470-
NODE_BUILTIN_MODULE_CONTEXT_AWARE(os, node::os::Initialize)
470+
NODE_MODULE_CONTEXT_AWARE_INTERNAL(os, node::os::Initialize)

test/parallel/test-os-checked-function.js

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
11
'use strict';
2+
// Flags: --expose_internals
3+
4+
const { internalBinding } = require('internal/test/binding');
5+
26
// Monkey patch the os binding before requiring any other modules, including
37
// common, which requires the os module.
4-
process.binding('os').getHomeDirectory = function(ctx) {
8+
internalBinding('os').getHomeDirectory = function(ctx) {
59
ctx.syscall = 'foo';
610
ctx.code = 'bar';
711
ctx.message = 'baz';

test/parallel/test-process-binding-internalbinding-whitelist.js

+1
Original file line numberDiff line numberDiff line change
@@ -16,3 +16,4 @@ assert(process.binding('url'));
1616
assert(process.binding('spawn_sync'));
1717
assert(process.binding('js_stream'));
1818
assert(process.binding('buffer'));
19+
assert(process.binding('os'));

0 commit comments

Comments
 (0)