scx_cake/stats.rs
1// SPDX-License-Identifier: GPL-2.0
2// Statistics module for scx_cake - utilities for reading/formatting scheduler stats from BPF maps
3
4/// Priority tier names (4-tier system classified by avg_runtime)
5pub const TIER_NAMES: [&str; 4] = [
6 "Critical", // T0: <100µs
7 "Interactive", // T1: <2ms
8 "Frame", // T2: <8ms
9 "Bulk", // T3: ≥8ms
10];