ebr 0.1.40

simple epoch-based reclamation with low cacheline ping-pong
Documentation
ebr-0.1.40 has been yanked.

ebr

a simple epoch-based reclamation (EBR) library with low cacheline ping-pong.

use ebr::Ebr;

let ebr: Ebr<Box<u64>> = Ebr::default();

let mut guard = ebr.pin();

guard.defer_drop(Box::new(1));