Use a Mutex to control a shared resource against two current threads : Mutex « Thread « C# / CSharp Tutorial

C# / CSharp Tutorial
1. Language Basics
2. Data Type
3. Operator
4. Statement
5. String
6. struct
7. Class
8. Operator Overload
9. delegate
10. Attribute
11. Data Structure
12. Assembly
13. Date Time
14. Development
15. File Directory Stream
16. Preprocessing Directives
17. Regular Expression
18. Generic
19. Reflection
20. Thread
21. I18N Internationalization
22. GUI Windows Forms
23. 2D
24. Design Patterns
25. Windows
26. XML
27. ADO.Net
28. Network
29. Directory Services
30. Security
31. unsafe
Java
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
C# / C Sharp
ASP.Net
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
PHP
Python
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
C# / CSharp Tutorial » Thread » Mutex 
20. 21. 2. Use a Mutex to control a shared resource against two current threads
using System;  
using System.Threading;  
 
class MyCounter 
  public static int count = 0
  public static Mutex MuTexLock = new Mutex()

 
class IncThread {  
  public Thread thrd;  
  
  public IncThread() {  
    thrd = new Thread(this.run);  
    thrd.Start();  
  }  
  
  void run() {  
    Console.WriteLine("IncThread is waiting for the mutex.")
 
    MyCounter.MuTexLock.WaitOne()
 
    Console.WriteLine("IncThread acquires the mutex.")
    
    int num = 10;
    do {  
      Thread.Sleep(50);  
      MyCounter.count++;  
      Console.WriteLine("In IncThread, MyCounter.count is " + MyCounter.count);  
      num--; 
    while(num > 0);  
  
    Console.WriteLine("IncThread releases the mutex.");   
 
    MyCounter.MuTexLock.ReleaseMutex()
  }  
}  
 
class DecThread {  
  public Thread thrd;  
  
  public DecThread() {  
    thrd = new Thread(new ThreadStart(this.run));  
    thrd.Start();  
  }  
  
  void run() {  
    Console.WriteLine("DecThread is waiting for the mutex.")
 
    MyCounter.MuTexLock.WaitOne()
 
    Console.WriteLine("DecThread acquires the mutex.")
 
    int num = 10;
    do {  
      Thread.Sleep(50);  
      MyCounter.count--;  
      Console.WriteLine("In DecThread, MyCounter.count is " + MyCounter.count);  
      num--; 
    while(num > 0);  
  
    Console.WriteLine("DecThread releases the mutex.");  
 
    MyCounter.MuTexLock.ReleaseMutex()
  }  
}  
  
class MainClass {  
  public static void Main() {  
    IncThread mt1 = new IncThread();  
    DecThread mt2 = new DecThread();  
  
    mt1.thrd.Join()
    mt2.thrd.Join()
  }  
}
IncThread is waiting for the mutex.
IncThread acquires the mutex.
DecThread is waiting for the mutex.
In IncThread, MyCounter.count is 1
In IncThread, MyCounter.count is 2
In IncThread, MyCounter.count is 3
In IncThread, MyCounter.count is 4
In IncThread, MyCounter.count is 5
In IncThread, MyCounter.count is 6
In IncThread, MyCounter.count is 7
In IncThread, MyCounter.count is 8
In IncThread, MyCounter.count is 9
In IncThread, MyCounter.count is 10
IncThread releases the mutex.
DecThread acquires the mutex.
In DecThread, MyCounter.count is 9
In DecThread, MyCounter.count is 8
In DecThread, MyCounter.count is 7
In DecThread, MyCounter.count is 6
In DecThread, MyCounter.count is 5
In DecThread, MyCounter.count is 4
In DecThread, MyCounter.count is 3
In DecThread, MyCounter.count is 2
In DecThread, MyCounter.count is 1
In DecThread, MyCounter.count is 0
DecThread releases the mutex.
20. 21. Mutex
20. 21. 1. Threading with Mutex
20. 21. 2. Use a Mutex to control a shared resource against two current threads
20. 21. 3. Use the Mutex object: WaitOne
20. 21. 4. Own a Mutex
20. 21. 5. Name a Mutex
ww__w___.___ja_va___2_s__._c__o_m | Contact Us
Copyright 2003 - 08 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.