Spinlocks, How Much Useful Are They?
Posted
by unknown
on Stack Overflow
See other posts from Stack Overflow
or by unknown
Published on 2009-09-21T18:59:48Z
Indexed on
2010/06/12
0:03 UTC
Read the original article
Hit count: 450
How often do you find yourself actually using spinlocks in your code? How common is it to come across a situation where using a busy loop actually outperforms the usage of locks?
Personally, when I write some sort of code that requires thread safety, I tend to benchmark it with different synchronization primitives, and as far as it goes, it seems like using locks gives better performance than using spinlocks. No matter for how little time I actually hold the lock, the amount of contention I receive when using spinlocks is far greater than the amount I get from using locks (of course, I run my tests on a multiprocessor machine).
I realize that it's more likely to come across a spinlock in "low-level" code, but I'm interested to know whether you find it useful in even a more high-level kind of programming?
© Stack Overflow or respective owner