Tagged Questions
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 ...
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 ...
2
votes
3answers
83 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 ...