illustrates the use of the Mutex object : Thread Sync « Thread « C# / C Sharp






illustrates the use of the Mutex object

illustrates the use of the Mutex object
/*
Mastering Visual C# .NET
by Jason Price, Mike Gunderloy

Publisher: Sybex;
ISBN: 0782129110
*/

/*
  Example14_11.cs illustrates the use of the Mutex object
*/

using System;
using System.Threading;

public class Example14_11 
{
  // a shared counter
  private static int Runs = 0;

  // a mutex
  static Mutex mtx;

  // the CountUp method increments the shared counter
  public static void CountUp() 
  {
    while (Runs < 10)
    {
      // acquire the mutex
      mtx.WaitOne();
      int Temp = Runs;
      Temp++;
      Console.WriteLine(Thread.CurrentThread.Name + " " + Temp);
      Thread.Sleep(1000);
      Runs = Temp;
      // release the mutex
      mtx.ReleaseMutex();
    } 
  }

  public static void Main() 
  {

    // create the mutex
    mtx = new Mutex(false, "RunsMutex");

    // create and launch two threads
    Thread t2 = new Thread(new ThreadStart(CountUp));
    t2.Name = "t2";
    Thread t3 = new Thread(new ThreadStart(CountUp));
    t3.Name = "t3";
    t2.Start();
    t3.Start();

  }

}


           
       








Related examples in the same category

1.A synchronized shared buffer implementationA synchronized shared buffer implementation
2.Use lock to synchronize access to an objectUse lock to synchronize access to an object
3.Another way to use lock to synchronize access to an objectAnother way to use lock to synchronize access to an object
4.Use Wait() and Pulse() to create a ticking clockUse Wait() and Pulse() to create a ticking clock
5.Use MethodImplAttribute to synchronize a methodUse MethodImplAttribute to synchronize a method
6.My Main Class Async Call backMy Main Class Async Call back
7.MyMain Class Async Wait TimeoutMyMain Class Async Wait Timeout
8.Threading Class Mutex
9.Threading and Asynchronous Operations:Access Reordering and VolatileThreading and Asynchronous Operations:Access Reordering and Volatile
10.Asynchronous Calls:A Simple Example 1Asynchronous Calls:A Simple Example 1
11.Asynchronous Calls:A Simple Example 2Asynchronous Calls:A Simple Example 2
12.Asynchronous Calls:Return ValuesAsynchronous Calls:Return Values
13.Asynchronous Calls:Waiting for CompletionAsynchronous Calls:Waiting for Completion
14.Asynchronous Calls:Waiting for Completion 2Asynchronous Calls:Waiting for Completion 2
15.Data Protection and Synchronization:A Slightly Broken ExampleData Protection and Synchronization:A Slightly Broken Example