vote up -2 vote down star

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.

flag

I believe this is a duplicate of stackoverflow.com/questions/59422/… – Daniel LeCheminant Mar 16 at 19:52
Yes you are correct, mark this as duplicate and I will nominate it for delete. – thr Mar 16 at 19:53
I think you should keep it as an example of how not to synchronize threads but that's just me;-) – Josh Mar 16 at 20:01
@Josh: Lol ... I think the real question was about the atomicity of reads/writes to a bool; the example was just an unfortunate one... – Daniel LeCheminant Mar 16 at 20:03
@Josh, not trying to be rude here... but reading comprehension? I explicitly stated that I'm aware of the fault in the above code, I just wanted to illustrate atomicity. – thr Mar 16 at 20:06

closed as exact duplicate by thr, David Norman, Daniel LeCheminant, jalf, ephemient Mar 16 at 20:08

1 Answer

vote up 6 vote down check

Are reads and writes to a bool are atomic in C#?

Yes.

Will your example "work as expected"?

Yes ... if you're expecting all of the other concurrency issues not related to the atomicity of the reads and writes to your boolean variable.


The C# spec says:

Reads and writes of the following data types are atomic: bool, char, byte, sbyte, short, ushort, uint, int, float, and reference types.

Also, the CLI specification (Partition I, Section 12.6.6) states:

A conforming CLI shall guarantee that read and write access to properly aligned memory locations no larger than the native word size is atomic when all the write accesses to a location are the same size.

link|flag

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