os: move process.binding('os') to internalBinding

PR-URL: https://github.com/nodejs/node/pull/25087
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
This commit is contained in:
briete 2018-12-17 23:45:24 +09:00 committed by Daniel Bevenius
parent 13abc6adfb
commit 937c7695aa
5 changed files with 9 additions and 3 deletions

View File

@ -93,6 +93,7 @@ const internalBindingWhitelist = [
'inspector',
'js_stream',
'natives',
'os',
'pipe_wrap',
'process_wrap',
'signal_wrap',

View File

@ -44,7 +44,7 @@ const {
getUptime,
isBigEndian,
setPriority: _setPriority
} = process.binding('os');
} = internalBinding('os');
function getCheckedFunction(fn) {
return function checkError(...args) {

View File

@ -470,4 +470,4 @@ void Initialize(Local<Object> target,
} // namespace os
} // namespace node
NODE_BUILTIN_MODULE_CONTEXT_AWARE(os, node::os::Initialize)
NODE_MODULE_CONTEXT_AWARE_INTERNAL(os, node::os::Initialize)

View File

@ -1,7 +1,11 @@
'use strict';
// Flags: --expose_internals
const { internalBinding } = require('internal/test/binding');
// Monkey patch the os binding before requiring any other modules, including
// common, which requires the os module.
process.binding('os').getHomeDirectory = function(ctx) {
internalBinding('os').getHomeDirectory = function(ctx) {
ctx.syscall = 'foo';
ctx.code = 'bar';
ctx.message = 'baz';

View File

@ -18,3 +18,4 @@ assert(process.binding('js_stream'));
assert(process.binding('buffer'));
assert(process.binding('fs'));
assert(process.binding('inspector'));
assert(process.binding('os'));