Tagged Questions
11
votes
11answers
906 views
Double checked locking Article
I was reading this article about "Double-Checked locking" and out of the main topic of the article I was wondering why at some point of the article the author uses the next Idiom:
Listing 7. ...
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 ...
5
votes
4answers
870 views
Is this broken double checked locking?
Checkstyle reports this code as "The double-checked locking idiom is broken", but I don't think that my code actually is affected by the problems with double-checked locking.
The code is supposed to ...
4
votes
4answers
347 views
Resetting a field lazy-loaded with the double-check idiom
Consider the "double-check idiom for lazy initialization of instance fields":
// Item 71 in Effective Java copied from this interview with Bloch.
private volatile FieldType field;
FieldType ...
1
vote
2answers
211 views
double checked locking - objective c
I realised double checked locking is flawed in java due to the memory model, but that is usually associated with the singleton pattern and optimizing the creation of the singleton.
What about under ...
0
votes
3answers
254 views
Does “Double Checked Locking” work in ColdFusion?
I have used a version of double checked locking in my CF app (before I knew what double checked locking was).
Essentially, I check for the existance of an object. If it is not present, I lock ...