crossbeam 0.2.5

Support for lock-free data structures, synchronizers, and parallel programming
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;