-
-
Notifications
You must be signed in to change notification settings - Fork 150
/
Copy pathProgram.cs
81 lines (61 loc) · 2.2 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
80
81
//
// Copyright (c) .NET Foundation and Contributors
// See LICENSE file in the project root for full license information.
//
using System.Diagnostics;
using System.Threading;
namespace _AutoResetEvent
{
public class Program
{
private static AutoResetEvent event_1 = new AutoResetEvent(true);
private static AutoResetEvent event_2 = new AutoResetEvent(false);
static void Main()
{
Debug.WriteLine("Next three threads will be created and started.\r\n" +
"The threads wait on AutoResetEvent #1, which was created\r\n" +
"in the signaled state, so the first thread is released.\r\n" +
"This puts AutoResetEvent #1 into the unsignaled state.");
for (int i = 1; i < 4; i++)
{
Thread t = new Thread(ThreadProc);
t.Start();
}
Thread.Sleep(250);
for (int i = 0; i < 2; i++)
{
Debug.WriteLine("Releasing another thread.");
Thread.Sleep(1000);
event_1.Set();
Thread.Sleep(250);
}
Debug.WriteLine("");
Debug.WriteLine("");
Debug.WriteLine("All threads are now waiting on AutoResetEvent #2.");
Thread.Sleep(1000);
for (int i = 0; i < 3; i++)
{
Debug.WriteLine("Releasing another thread.");
Thread.Sleep(1000);
event_2.Set();
Thread.Sleep(250);
}
Thread.Sleep(Timeout.Infinite);
}
static void ThreadProc()
{
var id = Thread.CurrentThread.ManagedThreadId;
Debug.WriteLine(
$"{id} waits on AutoResetEvent #1.");
event_1.WaitOne();
Debug.WriteLine(
$"{id} is released from AutoResetEvent #1.");
Debug.WriteLine(
$"{id} waits on AutoResetEvent #2.");
event_2.WaitOne();
Debug.WriteLine(
$"{id} is released from AutoResetEvent #2.");
Debug.WriteLine($"{id} ends.");
}
}
}