Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 873663
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T10:58:34+00:00 2026-05-15T10:58:34+00:00

How can I create a system/multiprocess Mutex to co-ordinate multiple processes using the same

  • 0

How can I create a system/multiprocess Mutex to co-ordinate multiple processes using the same unmanaged resource.

Background:
I’ve written a procedure that uses a File printer, which can only be used by one process at a time. If I wanted to use it on multiple programs running on the computer, I’d need a way to synchronize this across the system.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-15T10:58:35+00:00Added an answer on May 15, 2026 at 10:58 am

    There is a constructor overload for checking for an existing mutex.

    http://msdn.microsoft.com/en-us/library/bwe34f1k(v=vs.90).aspx

    So…

    void doWorkWhileHoldingMutex()
    {
        Console.WriteLine("   Sleeping...");
        System.Threading.Thread.Sleep(1000);
    }
    
    var requestInitialOwnership = true;
    bool mutexWasCreated;
    Mutex m = new Mutex(requestInitialOwnership, 
             "MyMutex", out mutexWasCreated);
    
    if (requestInitialOwnership && mutexWasCreated)
    {
        Console.WriteLine("We own the mutex");
    }
    else
    {
        Console.WriteLine("Mutex was created, but is not owned. Waiting on it...");
        m.WaitOne();
        Console.WriteLine("Now own the mutex.");
    }
    doWorkWhileHoldingMutex();
    Console.WriteLine("Finished working. Releasing mutex.");
    m.ReleaseMutex();
    

    If you fail to call m.ReleaseMutex() it will be called ‘abandoned’ when your thread exits. When another thread constructs the mutex, the exception System.Threading.AbandonedMutexException will be thrown telling him it was found in the abandoned state.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am building a website templating system where multiple user can create their own
I'm trying to create a new System.Threading.Thread object using Jscript, but I can't get
In C# , How can i create a System.Drawing.Color object using a value like
I'm building a system which can create forms during runtime. System is written for
I am writing a content management system where the user can create multiple sites
Can I create a junit environment without file system and network access? I want
I need to create a wall system just like Facebook's (users can post messages,
I would like to create/use a system-wide independent universal 'counter object' that can be
I'm looking to create an ID system for cataloging images. I can't use md5()
I want to build a system where an admin can create forms with the

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.