pub struct TaskStats {
pub runtime: AtomicU64,
pub run_count: AtomicU64,
pub voluntary_switches: AtomicU64,
pub involuntary_switches: AtomicU64,
pub last_run: AtomicU64,
}Expand description
Task statistics
Fields§
§runtime: AtomicU64Total time spent running (in ticks)
run_count: AtomicU64Number of times scheduled
voluntary_switches: AtomicU64Number of voluntary context switches
involuntary_switches: AtomicU64Number of involuntary context switches
last_run: AtomicU64Last time scheduled (in ticks)