#[cfg(any(test, feature = "lock_free_delays"))]
mod debug_delay;
#[cfg(any(test, feature = "lock_free_delays"))]
pub use self::debug_delay::debug_delay;
#[cfg(not(any(test, feature = "lock_free_delays")))]
pub fn debug_delay() {}
pub use crossbeam_epoch::{
pin, unprotected, Atomic, Collector, CompareAndSetError, Guard,
LocalHandle, Owned, Shared,
};
pub use std::sync::atomic;