diff options
Diffstat (limited to 'runtime/js/30_os.js')
-rw-r--r-- | runtime/js/30_os.js | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/runtime/js/30_os.js b/runtime/js/30_os.js index 4fa71fa83..723b52132 100644 --- a/runtime/js/30_os.js +++ b/runtime/js/30_os.js @@ -33,12 +33,12 @@ return ops.op_network_interfaces(); } - function getGid() { - return ops.op_getgid(); + function gid() { + return ops.op_gid(); } - function getUid() { - return ops.op_getuid(); + function uid() { + return ops.op_uid(); } // This is an internal only method used by the test harness to override the @@ -101,13 +101,13 @@ env, execPath, exit, - getGid, - getUid, + gid, hostname, loadavg, networkInterfaces, osRelease, setExitHandler, systemMemoryInfo, + uid, }; })(this); |