]> git.proxmox.com Git - rustc.git/blob - src/vendor/crossbeam/src/mem/mod.rs
New upstream version 1.19.0+dfsg1
[rustc.git] / src / vendor / crossbeam / src / mem / mod.rs
1 //! Memory management for concurrent data structures
2 //!
3 //! At the moment, the only memory management scheme is epoch-based reclamation,
4 //! found in the `epoch` submodule.
5
6 pub use self::cache_padded::{CachePadded, ZerosValid};
7
8 pub mod epoch;
9 mod cache_padded;