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

Ask A Question

Stats

  • Questions 523k
  • Answers 523k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer If at least one email account is enabled on the… May 16, 2026 at 9:46 pm
  • Editorial Team
    Editorial Team added an answer Sorry for the previous ans I was sleepy I guess.… May 16, 2026 at 9:46 pm
  • Editorial Team
    Editorial Team added an answer Maybe you want just vertical lines? You could use vlines(x,… May 16, 2026 at 9:46 pm

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Related Questions

In C# , How can i create a System.Drawing.Color object using a value like
In the Windows world I can create a file system filter (upper or lower)
I understand that using Perfmon.msc you can create a custom performance counter and by
I am implementing two processes on a LynxOS SE (POSIX conformant) system that will
I would like to create a caching system that will bypass some mechanisms in
How can I convert a WPF WriteableBitmap object to a System.Drawing.Image? My WPF client
I have a WinForms application. That application have a rich functionality. It can create
I have a method: private void DeletePuzzle(object param) { } param is a System.Windows.Controls.SelectedItemCollection
I am writing an affiliate system, and I want to generate a unique 32
I'm setting up a problem tracking system for a client and I'd like to

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.