https://github.com/krtab/rendezvous
Adaptive-barrier but built from atomics and futexes instead of mutexes and condvar.
https://github.com/krtab/rendezvous
Last synced: 12 months ago
JSON representation
Adaptive-barrier but built from atomics and futexes instead of mutexes and condvar.
- Host: GitHub
- URL: https://github.com/krtab/rendezvous
- Owner: krtab
- Created: 2023-03-10T14:59:45.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2023-03-24T08:56:11.000Z (about 3 years ago)
- Last Synced: 2025-04-12T03:35:25.779Z (about 1 year ago)
- Language: Rust
- Homepage:
- Size: 867 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
[](https://crates.io/crates/rendezvous)
[](https://github.com/krtab/rendezvous/releases/latest)
Rendezvous is a futex and atomics based implementation of an adaptive barrier, also known as a wait group.
It is primarily intended as a pedagogical resource and training exercise, as benchmarks show that is does not outperform mutexes and condvar based implementations.
