LimeThaw / emu

A fun little collaborative library for data structures and algorithms written in Swift.
The Unlicense
1 stars 0 forks source link

Locks #12

Open LimeThaw opened 6 years ago

LimeThaw commented 6 years ago

Implement some kind of lock. https://en.wikipedia.org/wiki/Lock_(computer_science) Ideally with different techniques (spin lock, monitors...). Should be thread safe. May invlolve the use of Objective-C or C code or another lower-level language.