Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jrmoulton/cr-mutex
A mutex implementation following along @jonhoo crust of rust series
https://github.com/jrmoulton/cr-mutex
Last synced: 6 days 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 (over 3 years ago)
- Default Branch: main
- Last Pushed: 2021-09-18T15:58:56.000Z (over 3 years ago)
- Last Synced: 2025-01-12T01:04:59.669Z (14 days 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