ebr

Crates.ioebr
lib.rsebr
version0.2.11
sourcesrc
created_at2021-07-20 17:56:06.505372
updated_at2023-11-11 22:48:54.475131
descriptionsimple epoch-based reclamation with low cacheline ping-pong
homepage
repositoryhttps://github.com/komora-io/ebr
max_upload_size
id425255
size35,727
Tyler Neely (spacejam)

documentation

README

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));
Commit count: 38

cargo fmt