https://github.com/jrmoulton/cr-mutex
A mutex implementation following along @jonhoo crust of rust series
https://github.com/jrmoulton/cr-mutex
Last synced: 4 months ago
JSON representation
A mutex implementation following along @jonhoo crust of rust series
- Host: GitHub
- URL: https://github.com/jrmoulton/cr-mutex
- Owner: jrmoulton
- Created: 2021-09-17T04:32:53.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2021-09-18T15:58:56.000Z (almost 4 years ago)
- Last Synced: 2025-03-06T05:12:00.094Z (4 months ago)
- Language: Rust
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# cr-mutex
A mutex implementation following along @jonhoo crust of rust seriesThis is a simnple implementation of a mutex in rust that implements a spin lock as its method of waiting for a multithreaded resource to become avaliable.
This project (along with the compiler errors that inevitably come) teach how to write multi-threaded code