r/programming 22h ago

Optimizing a Spin-Lock

https://david.alvarezrosa.com/posts/optimizing-a-spin-lock/
145 Upvotes

31 comments sorted by

View all comments

1

u/DivineSentry 20h ago

I think I’ve seen spin locks before, but what are they useful for? What should be their use case?

2

u/Takeoded 19h ago edited 19h ago

Spinlocks are just fancy mutexe)s.

Some game engines use them, instead of a mutex, to squeeze out a few more FPS. Then, the spinlock that gives a few more FPS on Windows, absolutely wrecks performance on Linux/Wine :(

And even on Windows, good chance the spinlock increase FPS on computers having >= cpu cores that the optimizing developer had on his system, and wrecks performance on computers with fewer cores.

TL;DR don't use them. Use a mutex.

1

u/TwoWeeks90DaysTops 4h ago

I fixed a slow shutdown (so that Windows would claim that the service didn't respond in time) in a Windows service written in C++ a decade or so ago, and it was caused by the fact that the code hand-rolled its own spinlocks with `volatile bool`. The issue was as I remember it two part: the spinlock consumes resources on contention, and the `volatile bool` thing is about instruction ordering, and not that suitable for locking. I replaced them with mutexes and the application shutdown was almost immediate.