An open API service indexing awesome lists of open source software.

https://github.com/jdockerty/atomics-and-locks

Implementations from the Rust Atomics and Locks book
https://github.com/jdockerty/atomics-and-locks

Last synced: 12 months ago
JSON representation

Implementations from the Rust Atomics and Locks book

Awesome Lists containing this project

README

          

# Rust Atomics and Locks

Implementations from the various showcases of structures and libraries from the [Rust Atomics and Locks](https://marabos.nl/atomics/) book.

These are kept together in a single repo so that I can link to it from my notes. The code contains comments which are primarily useful for me for future reference.

- [arc](./arc)
- [spinlock](./spinlock)
- [channels](./channels)
- [mutex](./lock)
- [rwlock](./rwlock)