ebr 0.2.13

simple epoch-based reclamation with low cacheline ping-pong
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
# ebr

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

```rust
use ebr::Ebr;

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

let mut guard = ebr.pin();

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