Tagged Questions

6
votes
5answers
2k views

Java Double Checked Locking

I happened upon an article recently discussing the double checked locking pattern in Java and it's pitfalls and now I'm wondering if a variant of that pattern that I've been using for years now is ...
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 ...
3
votes
7answers
360 views

Double checked locking on C++: new to a temp pointer, then assign it to instance

Anything wrong with the following Singleton implementation? Foo& Instance() { if (foo) { return *foo; } else { scoped_lock lock(mutex); if (foo) { ...