Volatile vs. Interlocked vs. lock - Stack Overflow most recent 30 from stackoverflow.com2009-12-11T08:47:18Zhttp://stackoverflow.com/feeds/question/154551http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/154551/volatile-vs-interlocked-vs-lock18Volatile vs. Interlocked vs. lockChris2008-09-30T19:25:06Z2009-09-07T16:11:03Z
<p>Let's say that a class has a <code>public int counter</code> field that is accessed by multiple threads. This int is only incremented or decremented.</p>
<p>To increment this field, which approach should be used, and why?</p>
<ul>
<li><code>lock(this.locker) this.counter++;</code></li>
<li><code>Interlocked.Increment(ref this.counter);</code></li>
<li>Change the access modifier of <code>counter</code> to <code>public volatile</code></li>
</ul>
<p>Now that I've discovered <code>volatile</code>, I've been removing many <code>lock</code> statements and the use of <code>Interlocked</code>. But is there a reason not to do this?</p>
http://stackoverflow.com/questions/154551/volatile-vs-interlocked-vs-lock/154567#1545672Answer by Lou Franco for Volatile vs. Interlocked vs. lockLou Franco2008-09-30T19:27:22Z2008-09-30T19:33:39Z<p>Interlocked functions do not lock. They are atomic, meaning that they can complete without the possibility of a context switch during increment. So there is no chance of deadlock or wait.</p>
<p>I would say that you should always prefer it to a lock and increment.</p>
<p>Volatile is useful if you need writes in one thread to be read in another, and if you want the optimizer to not reorder operations on a variable (because things are happening in another thread that the optimizer doesn't know about). It's an orthogonal choice to how you increment.</p>
<p>This is a really good article if you want to read more about lock-free code, and the right way to approach writing it</p>
<p><a href="http://www.ddj.com/hpc-high-performance-computing/210604448" rel="nofollow">http://www.ddj.com/hpc-high-performance-computing/210604448</a></p>
http://stackoverflow.com/questions/154551/volatile-vs-interlocked-vs-lock/154582#1545826Answer by Jon Skeet for Volatile vs. Interlocked vs. lockJon Skeet2008-09-30T19:29:35Z2008-09-30T19:29:35Z<p>Using volatile won't help when you need to increment - because the read and the write are separate instructions. Another thread could change the value after you've read but before you write back.</p>
<p>Personally I almost always just lock - it's easier to get right in a way which is <em>obviously</em> right than either volatility or Interlocked.Increment. As far as I'm concerned, lock-free multi-threading is for real threading experts, of which I'm not one. If Joe Duffy and his team build nice libraries which will parallelise things without as much locking as something I'd build, that's fabulous, and I'll use it in a heartbeat - but when I'm doing the threading myself, I try to keep it simple.</p>
http://stackoverflow.com/questions/154551/volatile-vs-interlocked-vs-lock/154586#1545862Answer by Rob Walker for Volatile vs. Interlocked vs. lockRob Walker2008-09-30T19:32:09Z2008-09-30T19:32:09Z<p>lock(...) works, but may block a thread, and could cause deadlock if other code is using the same locks in an incompatible way.</p>
<p>Interlocked.* is the correct way to do it ... much less overhead as modern CPUs support this as a primitive.</p>
<p>volatile on its own is not correct. A thread attempting to retrieve and then write back a modified value could still conflict with another thread doing the same.</p>
http://stackoverflow.com/questions/154551/volatile-vs-interlocked-vs-lock/154590#1545907Answer by Michael Damatov for Volatile vs. Interlocked vs. lockMichael Damatov2008-09-30T19:32:52Z2009-09-07T16:11:03Z<p>"<code>volatile</code>" does not replace <code>Interlocked.Increment</code>! It just makes sure that the variable is not cached, but used directly.</p>
<p>Incrementing a variable requires actually three operations: </p>
<ol>
<li>read</li>
<li>increment</li>
<li>write</li>
</ol>
<p><code>Interlocked.Increment</code> performs all three parts as a single atomic operation.</p>
http://stackoverflow.com/questions/154551/volatile-vs-interlocked-vs-lock/154596#1545962Answer by spoulson for Volatile vs. Interlocked vs. lockspoulson2008-09-30T19:33:32Z2008-09-30T19:33:32Z<p>Read the <a href="http://www.albahari.com/threading/" rel="nofollow">Threading in C#</a> reference. It covers the ins and outs of your question. Each of the three have different purposes and side effects.</p>
http://stackoverflow.com/questions/154551/volatile-vs-interlocked-vs-lock/154803#15480328Answer by Orion Edwards for Volatile vs. Interlocked vs. lockOrion Edwards2008-09-30T20:13:08Z2008-09-30T20:24:42Z<h3>Worst (won't actually work)</h3>
<blockquote>
<p>Change the access modifier of <code>counter</code> to <code>public volatile</code></p>
</blockquote>
<p>As other people have mentioned, this on it's own isn't actually safe at all. The point of <code>volatile</code> is that multiple threads running on multiple CPU's can and will cache data and re-order instructions.<br />
If it's not <code>volatile</code>, and CPU A increments a value, then CPU B may not actually see that incremented value until some time later, which may cause problems.<br />
If it is, this just ensures the 2 CPU's see the same data at the same time. It doesn't stop them at all from interleaving their reads and write operations which is the problem you are trying to avoid.</p>
<h3>Second Best:</h3>
<blockquote>
<pre><code>lock(this.locker) this.counter++;
</code></pre>
</blockquote>
<p>This is safe to do (provided you remember to <code>lock</code> everywhere else that you access <code>this.counter</code>).<br />
It prevents any other threads from executing any other code which is guarded by <code>locker</code>.
Using locks also, prevents the multi-cpu reordering problems as above, which is great. </p>
<p>The problem is, locking is slow, and if you re-use the <code>locker</code> in some other place which is not really related then you can end up blocking your other threads for no reason.</p>
<h3>Best</h3>
<blockquote>
<p>Interlocked.Increment(ref this.counter);</p>
</blockquote>
<p>This is safe, as it effectively does the read, increment, and write in 'one hit' which can't be interrupted. Because of this it won't affect any other code and you don't need to remember to lock elsewhere either. It's also very fast (as MSDN says, on modern CPU's this is often literally a single CPU instruction). </p>
<p>I'm not entirely sure however if it gets around other CPU's reordering things, or if you also need to combine volatile with the increment.</p>
<h3>Footnote: What volatile is actually good for.</h3>
<p>As <code>volatile</code> doesn't prevent these kind of multithreading issues, what's it for? A good example is say you have 2 threads, one which always writes to a variable (say <code>queueLength</code>), and one which always reads from that same variable. </p>
<p>If <code>queueLength</code> is not volatile, thread A may write 5 times, but thread B may see those writes as being delayed (or even potentially in the wrong order).</p>
<p>A solution would be to lock, but you could also in this situation use volatile, which would ensure that thread B will always see the most up-to-date thing that thread A has written, which would be faster and result in cleaner code.</p>
http://stackoverflow.com/questions/154551/volatile-vs-interlocked-vs-lock/904842#9048420Answer by Kenneth Xu for Volatile vs. Interlocked vs. lockKenneth Xu2009-05-24T23:12:18Z2009-05-24T23:12:18Z<p>I did some test to see how the theory actually works: kennethxu.blogspot.com/2009/05/interlocked-vs-monitor-performance.html. My test was more focused on CompareExchnage but the result for Increment is similar. Interlocked is not necessary faster in multi-cpu environment. Here is the test result for Increment on a 2 years old 16 CPU server. Bare in mind that the test also involves the safe read after increase, which is typical in real world.</p>
<pre><code>D:\>InterlockVsMonitor.exe 16
Using 16 threads:
InterlockAtomic.RunIncrement (ns): 8355 Average, 8302 Minimal, 8409 Maxmial
MonitorVolatileAtomic.RunIncrement (ns): 7077 Average, 6843 Minimal, 7243 Maxmial
D:\>InterlockVsMonitor.exe 4
Using 4 threads:
InterlockAtomic.RunIncrement (ns): 4319 Average, 4319 Minimal, 4321 Maxmial
MonitorVolatileAtomic.RunIncrement (ns): 933 Average, 802 Minimal, 1018 Maxmial
</code></pre>