//! evy_diagnostic โ per-system measurements for the dispatch DAG.
//!
//! Two modes, picked at runtime:
//!
//! - **wall** โ `std::time::Instant`-based. Always available. The default.
//! - **pmu** โ hardware PMU counters via [`acpu::pulse::Counters`].
//! Requires Apple Silicon, the `pmu` feature flag, AND running as root
//! or with the `dtrace_proc` entitlement. Falls back to wall if probe
//! fails.
//!
//! A `Diagnostic` instance accumulates per-name samples; the scheduler or
//! application drains it periodically into telemetry sinks.
pub use ;
pub use ;
pub use Timer;