pub static CONDITIONS: Mutex<Option<ConditionTracker>>
Expand description
A global static mutex-protected container for optionally holding condition tracking data.
This item provides synchronized access to a condition tracker by encapsulating an optional tracker value within a spin-lock-based mutex, ensuring safe concurrent modification and retrieval across threads. Initially empty, it is intended to be populated at runtime with tracking data as needed.