Open
Description
In order to cope with multi-platform support and handle different implementations of multiple platforms, it is necessary to abstract different implementations of multiple platforms
The current proc
implementation is a Linux-only implementation and relies heavily on the proc
pseudo-filesystem - it needs to read inside the /proc
filesystem.
- FreeBSD's proc pseudo-fs is not automounted.
- macOS does not have a proc fs, it use
sysctl
instead. - Windows platform are much different from *NIX family.
Activity