//! Flash control surface + quiescence-driven virtual-clock engine. Compiled
//! only under `all(not(wasm32), feature = "flash")` (gated in `lib.rs`), so
//! the tree itself carries no cfg; the inert OFF/wasm forms live in
//! `crate::common::flash_inert`. See CONTEXT.md "Virtual time (`flash`)".
/// The single flash thread-local (`ThreadCtx`: mode + credit + poll depth +
/// dedicated flag) and its accessors.
/// Sync-primitive diagnostics registry (provenance + holder/waiter state) for
/// the hang dump. Runtime-gated by `KITHARA_FLASH_SYNC_TRACE`.
/// Typed engine ids (`CvId` / `WaiterId` / `ThreadKey`) plus the
/// stateful-primitive `Backend` construction latch.
/// Flash-side mirror of the platform tree: re-import stubs where flash
/// adds no semantics, flash-aware primitives where it does.
/// Quiescence engine internals (scheduler, credit, pacing, wake handles,
/// task gate) — see `system/mod.rs`.
pub use *;
pub use ;
pub use crate;