When should I use volatile/Thread.MemoryBarrier() for thread safety?
|
2
|
|
|
|
|
|
You use Variables that are atomic, like an However, the compiler may optimize away some reads and writes, which you prevent with the
The compiler may actually do the calculations in a processor register and only write the value to the |
||||||||
|
|
|
What's wrong with
? This does all necessary locking, memory barriers, etc. for you. It's well understood and more readable than any custom synchronization code based on EDIT I can't think of a scenario in which I'd use
is not equivalent to the code above and is not thread-safe ( In a case like this:
(which should work) I'd use a ManualResetEvent to signal when Thread2 is done. |
||||||||||
|
|
|
Basically if you're using any other kind of synchronization to make your code threadsafe then you don't need to. Most of the lock mechanisms (including lock) automatically imply a memory barrier so that multiple processor can get the correct information. Volatile and MemoryBarrier are mostly used in lock free scenarios where you're trying to avoid the performance penalty of locking. Edit: You should read this article by Joe Duffy about the CLR 2.0 memory model, it clarifies a lot of things (if you're really interested you should read ALL the article from Joe Duffie who is by large the most expert person in parallelism in .NET) |
|||
|
