https://github.com/powergee/nbr-rs
A Rust Implementation of NBR, a high-performance garbage collector for concurrent data structures
https://github.com/powergee/nbr-rs
Last synced: 11 months ago
JSON representation
A Rust Implementation of NBR, a high-performance garbage collector for concurrent data structures
- Host: GitHub
- URL: https://github.com/powergee/nbr-rs
- Owner: powergee
- Created: 2023-03-20T05:21:08.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2023-12-20T05:15:04.000Z (over 2 years ago)
- Last Synced: 2025-03-26T07:22:59.262Z (about 1 year ago)
- Language: Rust
- Homepage:
- Size: 107 KB
- Stars: 2
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# NBR+ in Rust
A Rust crate which implements a concurrent garbage collector based on *NBR+* (Neutralization Based Reclamation) by Ajay Singh et al. [(arXiv:2012.14542v2)](https://arxiv.org/abs/2012.14542v2)
# Example
You can see [an implementation of Harris's list](tests/list.rs) as an example.
# Compatibility
NBR+ scheme depends on POSIX(`setjmp`, `longjmp`) environment and atomic operations.
This library is tested and sanitized on x86 machines. However, as it follows memory ordering semantics from C++, other machines with different ISA would also work.