0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-02-02 04:38:21 -05:00
denoland-deno/ext/os
denobot 3ba212649f
chore: forward v2.1.7 release commit to main (#27767)
This is the release commit being forwarded back to main for 2.1.7

Please ensure:
- [x] Everything looks ok in the PR
- [x] The release has been published

To make edits to this PR:
```shell
git fetch upstream forward_v2.1.7 && git checkout -b forward_v2.1.7 upstream/forward_v2.1.7
```

Don't need this PR? Close it.

cc @crowlKats

---------

Co-authored-by: crowlKats <crowlKats@users.noreply.github.com>
Co-authored-by: crowlkats <crowlkats@toaxl.com>
2025-01-21 19:25:12 -08:00
..
ops refactor: add 'deno_os' crate (#27655) 2025-01-14 17:29:36 +01:00
30_os.js refactor: add 'deno_os' crate (#27655) 2025-01-14 17:29:36 +01:00
40_signals.js refactor: add 'deno_os' crate (#27655) 2025-01-14 17:29:36 +01:00
Cargo.toml chore: forward v2.1.7 release commit to main (#27767) 2025-01-21 19:25:12 -08:00
lib.rs fix(ext/os): pass SignalState to web worker (#27741) 2025-01-20 19:43:15 +05:30
README.md refactor: add 'deno_os' crate (#27655) 2025-01-14 17:29:36 +01:00
signal.rs refactor: add 'deno_os' crate (#27655) 2025-01-14 17:29:36 +01:00
sys_info.rs refactor: add 'deno_os' crate (#27655) 2025-01-14 17:29:36 +01:00

deno_os

This crate implements OS specific APIs for Deno

loadavg

Target family Syscall Description
Linux sysinfo -
Windows - Returns DEFAULT_LOADAVG. There is no concept of loadavg on Windows
macOS, BSD getloadavg https://www.freebsd.org/cgi/man.cgi?query=getloadavg

os_release

Target family Syscall Description
Linux /proc/sys/kernel/osrelease -
Windows RtlGetVersion dwMajorVersion . dwMinorVersion . dwBuildNumber
macOS sysctl([CTL_KERN, KERN_OSRELEASE]) -

hostname

Target family Syscall Description
Unix gethostname(sysconf(_SC_HOST_NAME_MAX)) -
Windows GetHostNameW -

mem_info

Target family Syscall Description
Linux sysinfo and /proc/meminfo -
Windows sysinfoapi::GlobalMemoryStatusEx -
macOS
 sysctl([CTL_HW, HW_MEMSIZE]); 
sysctl([CTL_VM, VM_SWAPUSAGE]);
host_statistics64(mach_host_self(), HOST_VM_INFO64)
-