remove old bench

This commit is contained in:
Robin Appelman 2024-01-06 23:53:09 +01:00
commit d519769703
5 changed files with 2 additions and 58 deletions

View file

@ -8,7 +8,7 @@ pub mod data;
pub mod docker;
#[cfg(not(target_os = "windows"))]
mod linux;
pub mod linux;
#[cfg(target_os = "windows")]
pub mod win;

View file

@ -46,7 +46,7 @@ impl Sensors {
disk_stats: Mutex::new(DiskStatSource::new()?),
disk_usage: Mutex::new(DiskUsageSource::new()?),
cpu_power: Mutex::new(CpuPowerSource::new().unwrap_or_default()),
gpu_power: Mutex::new(GpuPowerSource::default()),
gpu_power: Mutex::new(GpuPowerSource),
})
}
}