static CPU_TOTAL_TICKS: [AtomicU64; 32]Expand description
Per-CPU scheduler tick counters used for CPU usage estimation.
CPU_TOTAL_TICKS[cpu]: all timer ticks observed oncpu.CPU_IDLE_TICKS[cpu]: ticks where the idle task was running oncpu.
CPU usage over a time window:
usage = 1 - (delta_idle / delta_total).