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
- Host: GitHub
- URL: https://github.com/jdockerty/atomics-and-locks
- Owner: jdockerty
- Created: 2024-06-13T14:35:46.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-07-02T12:00:32.000Z (almost 2 years ago)
- Last Synced: 2025-03-17T03:44:39.592Z (about 1 year ago)
- Language: Rust
- Homepage:
- Size: 14.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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)