ebr 0.0.2

simple epoch-based reclamation with low cacheline ping-pong
Documentation

Simple, CPU cache-friendly epoch-based reclamation (EBR).

use ebr::Ebr;

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

let mut guard = ebr.pin();

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