Is this the proper use of a mutex? - Stack Overflow most recent 30 from stackoverflow.com2009-12-06T21:47:39Zhttp://stackoverflow.com/feeds/question/46909http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/46909/is-this-the-proper-use-of-a-mutex4Is this the proper use of a mutex?Lawrence Johnston2008-09-05T21:17:16Z2008-09-06T03:16:03Z
<p>I have a situation where I might have multiple instances of a program running at once, and it's important that just one specific function not be executing in more than one of these instances at once.</p>
<p>Is this the proper way to use a mutex to prevent this from happening?</p>
<pre><code>lock (this.GetType()) {
_log.Info("Doing Sync");
DoSync();
_log.Info("Sync Completed");
}
</code></pre>
http://stackoverflow.com/questions/46909/is-this-the-proper-use-of-a-mutex/46928#469283Answer by Jonathan Webb for Is this the proper use of a mutex?Jonathan Webb2008-09-05T21:27:30Z2008-09-05T22:42:29Z<p>TheSeeker is correct.</p>
<p>Jeff Richter's advice in <a href="http://books.google.com/books?id=C-V_AAAACAAJ&dq=clr+via+c%23&ei=k6TBSPjYOomUzATIs8WIDg" rel="nofollow">Clr Via C#</a> (p638-9) on locking is to create a private object specifically for the purpose of being locked.</p>
<pre><code>private Object _lock = new Object();
// usage
lock( _lock )
{
// thread-safe code here..
}
</code></pre>
<p>This works because _lock cannot be locked by anything outside the current class.</p>
<p>EDIT: this is applicable to threads executing within a single process. @David Mohundro's answer is correct for inter-process locking.</p>
http://stackoverflow.com/questions/46909/is-this-the-proper-use-of-a-mutex/46934#469340Answer by Lawrence Johnston for Is this the proper use of a mutex?Lawrence Johnston2008-09-05T21:32:50Z2008-09-05T21:32:50Z<p>@<a href="#46928" rel="nofollow">Jonathan Webb</a></p>
<p>But in that case wont a second instance of the class create a different _lock Object, thus not preventing said second thread from executing this function at the same time as the first?</p>
http://stackoverflow.com/questions/46909/is-this-the-proper-use-of-a-mutex/46944#469440Answer by Douglas Leeder for Is this the proper use of a mutex?Douglas Leeder2008-09-05T21:37:13Z2008-09-05T21:37:13Z<p>When you say "multiple instances" do you mean separate processes? </p>
<p>If you do then you'll need to look at locking files, etc - rather than C# locks (Which will only protect multiple threads in a single process)</p>
http://stackoverflow.com/questions/46909/is-this-the-proper-use-of-a-mutex/46952#4695213Answer by David Mohundro for Is this the proper use of a mutex?David Mohundro2008-09-05T21:38:56Z2008-09-05T21:38:56Z<p>You said multiple instances of one application, so we're talking about two program.exe's running, right? The lock statement won't lock across multiple programs, just within the program. If you want a true Mutex, look at the <a href="http://msdn.microsoft.com/en-us/library/system.threading.mutex.aspx" rel="nofollow">System.Threading.Mutex</a> object.</p>
<p>Here is a usage example:</p>
<pre><code>bool createdNew;
using (Mutex mtx = new Mutex(false, "MyAwesomeMutex", out createdNew))
{
try
{
mtx.WaitOne();
MessageBox.Show("Click OK to release the mutex.");
}
finally
{
mtx.ReleaseMutex();
}
}
</code></pre>
<p>The createdNew variable will let you know whether or not it was created the first time. It only tells you if it has been created, though. If you want to acquire the lock, you need to call WaitOne and then call ReleaseMutex to release it. If you just want to see if you created a Mutex, just constructing it is fine.</p>
http://stackoverflow.com/questions/46909/is-this-the-proper-use-of-a-mutex/46955#469550Answer by Jonathan Webb for Is this the proper use of a mutex?Jonathan Webb2008-09-05T21:41:10Z2008-09-05T21:41:10Z<p>@Lawrence </p>
<p>A second instance of the class will indeed create its own private instance of _lock but this is completely independent of the first class instance.</p>
<p>If a thread is executing code inside the locked section of the first class instance, then any other thread will be blocked from that same block on the same instance. Threads can still execute that code section on other class instances.</p>
<p>If the method and private lock objects were both static, then no threads could execute the locked section at all once one thread had done so.</p>
<p>Does this help?</p>
<p>J</p>
http://stackoverflow.com/questions/46909/is-this-the-proper-use-of-a-mutex/46958#469580Answer by Lawrence Johnston for Is this the proper use of a mutex?Lawrence Johnston2008-09-05T21:44:05Z2008-09-05T21:44:05Z<p>@<a href="#46952" rel="nofollow">David Mohundro</a></p>
<p>Thanks, I think that's really what I was looking for in the first place.</p>
http://stackoverflow.com/questions/46909/is-this-the-proper-use-of-a-mutex/47056#470560Answer by Bob Nadler for Is this the proper use of a mutex?Bob Nadler2008-09-05T23:10:51Z2008-09-05T23:10:51Z<p>@Jonathan: Even easier:</p>
<pre><code>lock( this )
{
// thread-safe code here..
}
</code></pre>
http://stackoverflow.com/questions/46909/is-this-the-proper-use-of-a-mutex/47079#470790Answer by Jonathan Webb for Is this the proper use of a mutex?Jonathan Webb2008-09-05T23:29:10Z2008-09-05T23:29:10Z<p>@<a href="#47056" rel="nofollow">Bob</a></p>
<p>Using lock( this ) { ... } is the way that Microsoft originally intended locking to work, but is flawed because it can lead to deadlocks if another thread locks the same object reference.</p>
<p>Using a private dedicated object for locking means this can never happen.</p>
<p>Jeff Richter explains this very well in CLR via C# (p636, Why the "Great" idea isn't so great after all). Well worth a read.</p>
http://stackoverflow.com/questions/46909/is-this-the-proper-use-of-a-mutex/47223#472232Answer by Bob Nadler for Is this the proper use of a mutex?Bob Nadler2008-09-06T03:16:03Z2008-09-06T03:16:03Z<p>@Jonathan: I don't have the book you're referring to, but I dug around and now understand the issues with using <code>lock(this) {...}</code>. I found an interesting discussion on the topic.</p>
<p><a href="http://blogs.msdn.com/ericgu/archive/2005/04/22/410809.aspx" rel="nofollow">What's wrong with this code - #6</a></p>
<p><a href="http://blogs.msdn.com/ericgu/archive/2005/04/25/411935.aspx" rel="nofollow">What's wrong with this code #6? (Discussion)</a></p>
<p><a href="http://blogs.msdn.com/ericgu/default.aspx" rel="nofollow">Eric</a> provides reasoned guidance on the use of locks and the Synchronized wrapper and discusses some of the <a href="http://msdn.microsoft.com/en-us/library/f857xew0.aspx" rel="nofollow">Microsoft Threading Design Guidelines</a>.</p>