Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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

Awesome Lists containing this project

README

        

# cr-mutex
A mutex implementation following along @jonhoo crust of rust series

This 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