scx_pandemonium 5.9.1

A behavioral, adaptive sched_ext scheduler with three-tier classification, L2 affinity, and process learning
Documentation
// PANDEMONIUM STRUCTURED LOGGING
// TIMESTAMPED [HH:MM:SS] [LEVEL] FORMAT
// MIRRORS pandemonium.py AND tests/scale.rs PATTERN

pub fn _timestamp() -> String {
    unsafe {
        let mut t: libc::time_t = 0;
        libc::time(&mut t);
        let mut tm: libc::tm = std::mem::zeroed();
        libc::localtime_r(&t, &mut tm);
        format!("[{:02}:{:02}:{:02}]", tm.tm_hour, tm.tm_min, tm.tm_sec)
    }
}

macro_rules! log_info {
    ($($arg:tt)*) => {
        println!("{} [INFO]   {}", crate::log::_timestamp(), format!($($arg)*))
    };
}

macro_rules! log_warn {
    ($($arg:tt)*) => {
        println!("{} [WARN]   {}", crate::log::_timestamp(), format!($($arg)*))
    };
}