Is accessing a bool field atomic in C#? In particular, do I need to put a lock around:
class Foo
{
private bool _bar;
//... in some function on any thread (or many threads)
_bar = true;
//... same for a read
if (_bar) { ... }
}
|
Is accessing a bool field atomic in C#? In particular, do I need to put a lock around:
|
|||
|
|
Yes.
as found in C# Language Spec. Edit: It's probably also worthwhile understanding the volatile keyword. |
|||||||||||||||||||
|
|
bool accesses are indeed atomic, but that isn't the whole story. You don't have to worry about reading a value that is 'incompletely written' - it isn't clear what that could possibly mean for a bool in any case - but you do have to worry about processor caches, at least if details of timing are an issue. If thread #1 running on core A has your |
|||
|
|
As stated above bool is atomic but you still need to remeber that it also depends on what you want to do with it.
is not an atomic operation meaning that b value could change before the current thread executes the code after the if statement. |
||||
|
|
|
the approach I have used, and I think is correct, is
the goal was basically to avoid having to repetively lock an object on every iteration just to check if we needed to lock it in order to provide a large amount of state change information which occurs rarely. I think this approach works. And if absolute consistancy is required, I think volatile would be appropriate on the b bool. |
|||
|