-
-
Notifications
You must be signed in to change notification settings - Fork 150
/
Copy pathProgram.cs
79 lines (57 loc) · 2.12 KB
/
Program.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
//
// Copyright (c) .NET Foundation and Contributors
// See LICENSE file in the project root for full license information.
//
using System.Diagnostics;
using System.Threading;
namespace _ManualResetEvent
{
public class Program
{
// ManualResetEvent is used to block and release threads manually. It is
// created in the unsignaled state.
private static ManualResetEvent mre = new ManualResetEvent(false);
public static void Main()
{
Debug.WriteLine("Start 3 named threads that block on a ManualResetEvent:");
Debug.WriteLine("");
for (int i = 0; i <= 2; i++)
{
Thread t = new Thread(ThreadProc);
t.Start();
}
Thread.Sleep(1000);
Debug.WriteLine("");
Debug.WriteLine("All three threads should have started, calling Set()" +
"to release all the threads.");
mre.Set();
Thread.Sleep(2000);
Debug.WriteLine("");
Debug.WriteLine("When a ManualResetEvent is signaled, threads that call WaitOne() do not block.");
for (int i = 3; i <= 4; i++)
{
Thread t = new Thread(ThreadProc);
t.Start();
}
Thread.Sleep(2000);
Debug.WriteLine("");
Debug.WriteLine("Calling Reset(), so that threads once again block when they call WaitOne().");
mre.Reset();
// Start a thread that waits on the ManualResetEvent.
Thread t5 = new Thread(ThreadProc);
t5.Start();
Thread.Sleep(2000);
Debug.WriteLine("");
Debug.WriteLine("Call Set() and conclude the demo.");
mre.Set();
Thread.Sleep(Timeout.Infinite);
}
private static void ThreadProc()
{
Debug.WriteLine(
$"{Thread.CurrentThread.ManagedThreadId} starts and calls mre.WaitOne()");
mre.WaitOne();
Debug.WriteLine($"{Thread.CurrentThread.ManagedThreadId} ends.");
}
}
}