1 2 3 4 5 6 7 8 9 10
#[cfg(feature = "shuttle")] pub(crate) use shuttle::sync::{ atomic::{AtomicBool, AtomicU64, Ordering}, Mutex, }; #[cfg(not(feature = "shuttle"))] pub(crate) use std::sync::{ atomic::{AtomicBool, AtomicU64, Ordering}, Mutex, };