Skip to content

Latest commit

 

History

History
13 lines (8 loc) · 213 Bytes

README.md

File metadata and controls

13 lines (8 loc) · 213 Bytes

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));