1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#![cfg(target_os = "linux")]
use once_cell::sync::OnceCell;
use std::borrow::Cow;
use std::path::{Path, PathBuf};
type RootCell = OnceCell<PathBuf>;
static PROCFS_ROOT: RootCell = OnceCell::new();
static SYSFS_ROOT: RootCell = OnceCell::new();
pub fn set_procfs_root<T: Into<Cow<'static, Path>>>(root: T) {
let root = root.into().into_owned();
let _ = PROCFS_ROOT.get_or_init(|| root);
}
pub fn procfs_root() -> &'static Path {
PROCFS_ROOT.get_or_init(|| PathBuf::from("/proc")).as_ref()
}
pub fn set_sysfs_root<T: Into<Cow<'static, Path>>>(root: T) {
let root = root.into().into_owned();
let _ = SYSFS_ROOT.get_or_init(|| root);
}
pub fn sysfs_root() -> &'static Path {
SYSFS_ROOT.get_or_init(|| PathBuf::from("/sys")).as_ref()
}