-
Notifications
You must be signed in to change notification settings - Fork 57
/
Copy pathspin_lock_acq_rel.cpp
55 lines (48 loc) · 1.07 KB
/
spin_lock_acq_rel.cpp
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
//=============================================
// C++ Atomic types explained
// A spin lock mutex using std::atomic_flag
// using acquire-release memory ordering
//=============================================
#include <thread>
#include <vector>
#include <iostream>
#include <atomic>
// Class implemented spin-lock mutex
class spin_lock
{
std::atomic_flag flg;
public:
spin_lock() : flg(ATOMIC_FLAG_INIT)
{}
void lock()
{
// acquire lock and spin
while (flg.test_and_set(std::memory_order_acquire));
}
void unlock()
{
// release lock
flg.clear(std::memory_order_release);
}
};
// spin_lock mutex global instance
spin_lock spin;
void func(int id)
{
for (int count = 0; count < 10; ++count)
{
spin.lock();
std::cout << "Output from thread# " << id << " Count# " << count << '\n';
spin.unlock();
}
}
int main()
{
std::vector<std::thread> v;
for (int id = 0; id < 10; ++id) {
v.emplace_back(func, id);
}
for (auto& t : v) {
t.join();
}
}