conc 0.5.0

Hazard-pointer-based concurrent memory reclamation.
1
2
3
4
5
6
7
//! Various simple lock-free data structures built on `conc`.

mod stm;
mod treiber;

pub use self::stm::Stm;
pub use self::treiber::Treiber;