Skip to content

Latest commit

 

History

History
3 lines (3 loc) · 292 Bytes

README.md

File metadata and controls

3 lines (3 loc) · 292 Bytes

TreeLock

Random idea I had in a concurrent programming class to make a mutex. The idea is to have a tree of locks, each process starts at the branches and acquires locks until it gets to the root. Probably no better in performance than the standard library but it was fun to build.