vote up 10 vote down star
12

The Mutex class is very misunderstood, and Global mutexes even more so.

What is good, safe pattern to use when creating Global mutexes?

flag

3 Answers

vote up 14 vote down check

I really want to make sure this is out there, cause its so hard to get right.

    // unique id for global mutex - Global prefix means it is global to the machine
    const string mutex_id = "Global\\{B1E7934A-F688-417f-8FCB-65C3985E9E27}";

    static void Main(string[] args)
    {

        using (var mutex = new Mutex(false, mutex_id))
        {
            try
            {
                try
                {
                    // note, you may want to time out here instead of waiting forever
                    mutex.WaitOne(Timeout.Infinite, false);
                }
                catch (AbandonedMutexException)
                {
                    // Log the fact the mutex was abandoned in another process, it will still get aquired
                }

                // Perform your work here.
            }
            finally
            {
                mutex.ReleaseMutex();
            }
        }
    }
link|flag
This could possibly be improved to include a timeout – Sam Saffron Oct 23 '08 at 12:44
Add improved by using a single try/catch/finally. – Kenny Oct 23 '08 at 13:21
1  
A single try catch does not work here, you still want to do work if you get an abandoned mutex – Sam Saffron Oct 24 '08 at 0:15
1  
Please note that implementers should not forget to use guidgen.exe to replace the Guid value in the Mutex name with a new Guid. – divo May 25 at 10:24
Please note that this example will wait infinitely until another process releases the Mutex. – Liam Jul 31 at 16:16
show 3 more comments
vote up 1 vote down

This example will exit after 5 seconds if another instance is already running.

// unique id for global mutex - Global prefix means it is global to the machine
const string mutex_id = "Global\\{B1E7934A-F688-417f-8FCB-65C3985E9E27}";

static void Main(string[] args)
{

    using (var mutex = new Mutex(false, mutex_id))
    {
        try
        {
            try
            {
                if (!mutex.WaitOne(TimeSpan.FromSeconds(5), false))
                {
                    Console.WriteLine("Another instance of this program is running");
                    Environment.Exit(0);
                }
            }
            catch (AbandonedMutexException)
            {
                // Log the fact the mutex was abandoned in another process, it will still get aquired
            }

            // Perform your work here.
        }
        finally
        {
            mutex.ReleaseMutex();
        }
    }
}
link|flag
vote up 0 vote down

Would this be the right way of doing the same thing with a timeout ?

// unique id for global mutex - Global prefix means it is global to the machine
const string mutex_id = "Global\\{B1E7934A-F688-417f-8FCB-65C3985E9E27}";

static void Main(string[] args)
{

    using (var mutex = new Mutex(false, mutex_id))
    {
        bool bHadMutex= false;
        try
        {
            try
            {
                // note, you may want to time out here instead of waiting forever
                bHadMutex= mutex.WaitOne(200, false);
            }
            catch (AbandonedMutexException)
            {
                // Log the fact the mutex was abandoned in another process, it will still get aquired
    	       bHadMutex= true;
            }

            // Perform your work here.
        }
        finally
        {   //ReleaseMutext will throw  ApplicationException  if the calling thread does not own the mutex, so we have to check

    			if (bHadMutex)
    				mutex.ReleaseMutex(); //otherwise 
        }
    }
}
link|flag

Your Answer

Get an OpenID
or

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