vote up 1 vote down star

Suppose I have a variable "counter", and there are several threads accessing and setting the value of "counter" by using Interlocked, i.e.:

int value = Interlocked.Increment(ref counter);

and

int value = Interlocked.Decrement(ref counter);

Can I assume that, the change made by Interlocked will be visible in all threads?

If not, what should I do to make all threads synchronize the variable?

EDIT: someone suggested me to use volatile. But when I set the "counter" as volatile, there is compiler warning "reference to volatile field will not be treated as volatile".

When I read online help, it said, "A volatile field should not normally be passed using a ref or out parameter".

flag

2 Answers

vote up 2 vote down check

Interlocked ensures that only 1 thread at a time can update the value. To ensure that other threads can read the correct value (and not a cached value) mark it as volatile.

public volatile int Counter;

link|flag
when I marked as volatile, there is complier warning. "reference to volatile field will not be treat as volatile". – chaowman Feb 5 at 17:25
ignore that warning for this case: stackoverflow.com/questions/425132/… – Lasse V. Karlsen Feb 5 at 17:35
1  
Apparently you don't need Volatile if you are using Interlocked, but if you are modifying without using Interlocked then you do. – Peter Morris Feb 5 at 17:36
Just to clarify. Mark items as volatile if you are going to read them without obtaining a lock. Use Interlocked.Increment to synchronise updating, or use a lock() on something. The warning you get about "ref not being treated as volatile" is generic and can be ignored in the case of Interlocked. – Peter Morris Feb 9 at 15:45
vote up 1 vote down

Actually, they aren't. If you want to safely modify counter, then you are doing the correct thing. But if you want to read counter directly you need to declare it as volatile. Otherwise, the compiler has no reason to believe that counter will change because the Interlocked operations are in code that it might not see.

link|flag

Your Answer

Get an OpenID
or

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