Duplicates:
Assuming this class/variable and these two threads
class Foo
{
public static volatile bool Bar;
}
Thread1
// Thread1
Foo.Bar = true;
while(somethingIsTrue())
{
/* some long running operation */
}
Foo.Bar = false;
Thread2
// Thread2
while(Foo.Bar) {} // Wait for Thread1
// Thread1 is done here, so we can do whatever we wanted
Is the operation while(Foo.Bar) {} guaranteed to be atomic in C# and will this behave as "expected" (Thread2 will wait until Thread1 is done) ? Yes I'm aware of the fact that Thread2 can skip while(Foo.Bar) {} and Thread1 could set it "after" Thread2 is already past it's loop, but this is just an example of atomicity and not identical to what I want to achieve.
