Possible Duplicate:
Double-checked locking in .net

EDIT: lots of edits to clarify this question is not about singleton

I find myself writing code like this:

    if(resourceOnDiskNeedsUpdating)
    {
        lock(lockObject)
        {
            if(resourceOnDiskNeedsUpdating) // has a previous thread already done this?
                UpdateResourceOnDisk();
        }
    }
    return LoadResourceFromDisk();

UpdateResource() is a slow operation. Does this pattern make sense?
Are there better alternatives?

link|improve this question

65% accept rate
in my case the Update resource is writing a file on disk, if that makes any difference. – Myster Feb 18 '11 at 0:58
I've made my question NOT about singletons, is it still a duplicate? should I try re-open it ? :-} – Myster Feb 18 '11 at 1:50
Yes, it's still a duplicate. The other question also was about DCL in general, most of the answers gave examples using singletons, because that's where DCL commonly appears, but there's no difference in scope between the questions. – Ben Voigt Feb 18 '11 at 1:59
feedback

closed as exact duplicate by Kirk Woll, Ben Voigt, RPM1984, R. Martinho Fernandes, Mitch Wheat Feb 18 '11 at 1:06

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

2 Answers

up vote 4 down vote accepted

This called "double-checked locking".

You need a memory fence to make it correct.

See Wikipedia's article on double checked locking in .NET

link|improve this answer
feedback

An alternative I use would be to just use the 'volatile' keyword. http://msdn.microsoft.com/en-us/library/x13ttww7%28v=vs.71%29.aspx

link|improve this answer
Well, given your edit - make the variable 'resourceNeedsUpdating' volatile and do away with the secondary check in the lock. Add a variable indicating whether or not you're in the process of updating and check it before checking resourceNeedsUpdating / set it before/after calling UpdateResource, or unset resourceNeedsUpdating before calling UpdateResource. – Jeremy Sylvis Feb 18 '11 at 1:42
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.