Tagged Questions
The double-checked tag has no wiki summary.
11
votes
5answers
1k views
How to show that the double-checked-lock pattern with Dictionary's TryGetValue is not threadsafe
Recently I've seen some C# projects that use a double-checked-lock pattern on a Dictionary. Something like this:
private static readonly object _lock = new object();
private static volatile ...
11
votes
11answers
908 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. ...
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
5answers
585 views
Mike Ash Singleton: Placing @synchronized
I came accross this on the Mike Ash "Care and feeding of singletons" and was a little puzzeled by his comment:
This code is kind of slow, though.
Taking a lock is somewhat expensive.
Making it ...
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
872 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 ...
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) {
...
2
votes
3answers
84 views
Is this code Double Checked Locking safe?
I am looking at some code in our app that I think may be encountering a case of "Double-checked locking". I have written some sample code that is similar to what we do.
Can anyone see how this can be ...
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 ...