1 2 3 4 5 6 7 8 9
//! Memory management for concurrent data structures
//!
//! At the moment, the only memory management scheme is epoch-based reclamation,
//! found in the `epoch` submodule.
pub use self::cache_padded::{CachePadded, ZerosValid};
pub mod epoch;
mod cache_padded;