-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtimed_mutex.cpp
More file actions
149 lines (67 loc) · 2.15 KB
/
Copy pathtimed_mutex.cpp
File metadata and controls
149 lines (67 loc) · 2.15 KB
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
// TOPIC: Timed Mutex In C++ Threading (std::timed_mutex)
// NOTES:
// 0. std::timed_mutex is blocked till timeout_time or the lock is aquired and returns true if success
// otherwise false.
// 1. Member Function:
// a. lock
// b. try_lock
// c. try_lock_for ---\ These two functions makes it different from mutex.
// d. try_lock_until ---/
// e. unlock
// EXAMPLE: try_lock_for();
// Waits until specified timeout_duration has elapsed or the lock is acquired, whichever comes first.
// On successful lock acquisition returns true, otherwise returns false.
#include <iostream>
#include <thread>
#include <mutex>
#include <chrono>
using namespace std;
int myAmount = 0;
std::timed_mutex m;
void increment(int i) {
if(m.try_lock_for(std::chrono::seconds(2))){
++myAmount;
std::this_thread::sleep_for (std::chrono::seconds(1));
cout << "Thread " << i << " Entered" << endl;
m.unlock();
}else{
cout << "Thread " << i << " Couldn't Enter" << endl;
}
}
int main() {
std::thread t1(increment, 1);
std::thread t2(increment, 2);
t1.join();
t2.join();
cout << myAmount << endl;
return 0;
}
// EXAMPLE: try_lock_until
// Waits until specified timeout_time has been reached or the lock is acquired, whichever comes first.
// On successful lock acquisition returns true, otherwise returns false.
// #include <iostream>
// #include <thread>
// #include <mutex>
// #include <chrono>
// using namespace std;
// int myAmount = 0;
// std::timed_mutex m;
// void increment(int i) {
// auto now=std::chrono::steady_clock::now();
// if(m.try_lock_until(now + std::chrono::seconds(2))){
// ++myAmount;
// std::this_thread::sleep_for (std::chrono::seconds(1));
// cout << "Thread " << i << " Entered" << endl;
// m.unlock();
// }else{
// cout << "Thread " << i << " Couldn't Enter" << endl;
// }
// }
// int main() {
// std::thread t1(increment, 1);
// std::thread t2(increment, 2);
// t1.join();
// t2.join();
// cout << myAmount << endl;
// return 0;
// }