Abandoned mutex exception
abandonedmutexexception, c#, multiprocessing, multithreading, mutex
Solution
Your problem is you hold the Mutex twice, but only release it once, due to how you have mis-arranged your `if` statements. Your first execution catches it twice - in both of those `if` statements, yet your code only releases it once.
You need to re-organize the `if`s so you only capture the mutex one time.
bool captured = true;
if (!mutex.WaitOne(1000, false))
{
Console.WriteLine("First check - some one locked the mutex");
captured = false;
}
if (!captured && !mutex.WaitOne(3000, false))
{
Console.WriteLine("Second check- some one locked the mutex");
captured = false;
}
if (captured)
{
Console.WriteLine("I got the mutex");
Console.WriteLine("sleeping");
Thread.Sleep(3000);
Console.WriteLine("Awaking and Releasing mutex");
mutex.ReleaseMutex();
}
Problem
I am trying to use a mutex for the first time and have the following code executing on two separate instances of the program ``` public void asynchronousCode() { using (var mutex = new Mutex(false, "mySpecialMutex")) { if (!mutex.WaitOne(1000, false)) { Console.WriteLine("First check - some one locked the mutex"); } if (!mutex.WaitOne(3000, false)) { Console.WriteLine("Second check- some one locked the mutex"); } else { Console.WriteLine("I got the mutex"); Console.WriteLine("sleeping"); Thread.Sleep(3000); Console.WriteLine("Awaking and Releasing mutex"); mutex.ReleaseMutex(); } } } ``` When I run this, one of the instances (the one i run first) prints ``` I got the mutex sleeping awaking and releasing mutex ``` The other instance prints ``` First check - some one locked the mutex ``` and as soon as the first instance leases the mutex, it crashes at the second wait statement with the exception ``` The wait completed due to an abandoned mutex. ``` Any ideas on why I am getting this exception and how i can prevent it ? Solution: I probably should have read the mdsn documentation more clearly. Thanks Andrew for pointing me in the right direction You can use the WaitHandle.WaitOne method to request ownership of a mutex. The thread that owns a mutex can request the same mutex in repeated calls to WaitOne without blocking its execution. However, the thread must call the ReleaseMutex method the same number of times to release ownership of the mutex. The Mutex class enforces thread identity, so a mutex can be released only by the thread that acquired it.