I've got a class that manages a shared resource. Now, since access to the resource depends on many parameters, this class is instantiated and disposed several times during the normal execution of the program.

The shared resource does not support concurrency, so some kind of locking is needed. The first thing that came into my mind is having a static instance in the class, and acquire locks on it, like this:

// This thing is static!
static readonly object MyLock = new object();

// This thing is NOT static!
MyResource _resource = ...;

public DoSomeWork() {
    lock(MyLock) {
        _resource.Access();
    }
}

Does that make sense, or would you use another approach?

link|improve this question

62% accept rate
feedback

2 Answers

up vote 3 down vote accepted

Yes you can use a static variable to protect a shared resource.

You could also use typeof(class) as the expression inside lock. See the warning below though, with the static variable it is at least more protected to within your class.

link|improve this answer
2  
I wouldn't lock on typeof(class), since you could get a deadlock if someone else locks on the same type. At least, don't do it on public types. – driis Apr 1 '10 at 13:51
@driis: Agreed, added a note in the answer. Thanks. – Brian R. Bondy Apr 1 '10 at 14:01
+1 for the "Yes you can...", -1 for the suggestion of locking on typeof(class), so an aggregate 0. – LukeH Apr 1 '10 at 14:27
@Luke: No +1 for the post with the pinkest unicorn? – Brian R. Bondy Apr 1 '10 at 15:01
1  
Maybe I've got some repressed, subconscious unicorn-jealousy going on! – LukeH Apr 1 '10 at 15:06
feedback

That's completely acceptable with the Lock on the static variable. You could also do

[ThreadStatic]
static readonly object MyLock = new object();

Just in case someone later doesn't wrap the use of it in a lock statement

link|improve this answer
4  
That creates a separate copy of the lock for every thread, the net result of which will be no actual locking at all. – Aaronaught Apr 1 '10 at 13:49
1  
-1, locking on a value of thread-static field is useless – Denis Krjuchkov Apr 1 '10 at 14:06
@Denis, I wasn't saying to add [ThreadStatic] if he already was using lock. i was using it as an alternative. He's using this static variable in a non-static function. In this situation i'm saying "lock" is acceptable or [ThreadStatic]. We don't know what else is happening in his code. – used2could Apr 2 '10 at 12:45
feedback

Your Answer

 
or
required, but never shown

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