The thing is I've been using the lock statement to protect a critical part of my code, but now, I realize I could allow concurrent execution of that critical code is some conditions are met.
Is there a way to condition the lock?
|
1
|
|
|||
|
|
|
|
|
||
|
|
|
I think that question cries "race condition!". What if the condition turns from true to false shortly after the check, but before a thread enters the critical section of code? Or while a thread is in the process of executing it? |
||||||||||
|
|
|
Actually, to avoid a race condition, I'd be tempted to use a
|
||||
|
|
|
I'm no threading expert, but it sounds like you might be looking for something like this (double-checked locking). The idea is to check the condition both before and after acquiring the lock.
|
||
|
|
|
|
I'm guessing you've got some code that looks a little like this:
To make this conditional couldn't you just do this:
Should work, no? |
||||
|
|
|
EDIT: yes, there is a race condition unless you can assure that the condition is constant while threads are entering. |
||||||||||
|
|
|
Use Double-checked locking pattern, as suggested above. that's the trick IMO :) make sure you have your lock object as a static, as listed in not.that.dave.foley.myopenid.com's example. |
||
|
|
