Crates.io | might_sleep |
lib.rs | might_sleep |
version | 0.2.0 |
source | src |
created_at | 2022-11-16 19:44:12.270944 |
updated_at | 2022-11-19 09:08:52.19052 |
description | limit cpu usage by estimating sleep time |
homepage | |
repository | https://github.com/TanTanDev/might_sleep.git |
max_upload_size | |
id | 716656 |
size | 21,299 |
Rust library for limiting the cpu usage by trying to target a specific frame rate. The library will internally estimate the time we need to sleep to reach the target fps, taking the programs execution time into account.
example code:
mod usage {
use std::time::Duration;
pub const LOW: Duration = Duration::from_millis(100);
pub const NORMAL: Duration = Duration::from_millis(50);
}
fn main() {
let mut cpu_limiter = CpuLimiter::new(usage::LOW);
cpu_limiter.duration = usage::NORMAL; // usage is now normal (50ms delay)
loop {
println!("should be called every 50 ms");
cpu_limiter.might_sleep();
}
}
might_sleep is free and open source! All code in this repository is dual-licensed under either:
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.