Tagged Questions
5
votes
3answers
1k views
What's wrong with this fix for double checked locking?
So I've seen a lot of articles now claiming that on C++ double checked locking, commonly used to prevent multiple threads from trying to initialize a lazily created singleton, is broken. Normal double ...