Spin Locks
Nov 16, 2022 · 2 min read · In this post, I’d like to discuss an approach called Spin Locks that are used for mutual exclusion of threads in a critical section of code. Spin Locks work by spinning in a loop until they can obtain the lock. Other lock implementations that use pth...
Join discussion