summaryrefslogtreecommitdiffstats
path: root/src/data_collection/memory.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/data_collection/memory.rs')
-rw-r--r--src/data_collection/memory.rs17
1 files changed, 7 insertions, 10 deletions
diff --git a/src/data_collection/memory.rs b/src/data_collection/memory.rs
index dee65d8d..98cfebda 100644
--- a/src/data_collection/memory.rs
+++ b/src/data_collection/memory.rs
@@ -2,18 +2,15 @@
#[cfg(not(target_os = "windows"))]
pub(crate) use self::sysinfo::get_cache_usage;
-pub(crate) use self::sysinfo::get_ram_usage;
+pub(crate) use self::sysinfo::{get_ram_usage, get_swap_usage};
pub mod sysinfo;
-cfg_if::cfg_if! {
- if #[cfg(target_os = "windows")] {
- pub mod windows;
- pub(crate) use self::windows::get_swap_usage;
- } else {
- pub(crate) use self::sysinfo::get_swap_usage;
-
- }
-}
+// cfg_if::cfg_if! {
+// if #[cfg(target_os = "windows")] {
+// mod windows;
+// pub(crate) use self::windows::get_committed_usage;
+// }
+// }
#[cfg(feature = "zfs")]
pub mod arc;