-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathfairlocks.hpp
101 lines (75 loc) · 1.57 KB
/
fairlocks.hpp
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
#ifndef FAIRLOCKS_HPP_
#define FAIRLOCKS_HPP_
#include <assert.h>
#include <sched.h>
#include <stddef.h>
#include <atomic>
#include <condition_variable>
#include <deque>
#include <mutex>
namespace locks {
class spin_base {
protected:
std::atomic<bool> islocked{};
public:
void unlock();
};
struct spinlock_hot : spin_base {
void lock();
};
struct spinlock_pause : spin_base {
void lock();
};
struct spinlock_yield : spin_base {
void lock();
};
using spin_f = int();
template <spin_f SPINF>
class ticket_template {
std::atomic<size_t> dispenser{}, serving{};
public:
void lock() {
auto ticket = dispenser.fetch_add(1, std::memory_order_relaxed);
while (ticket != serving.load(std::memory_order_acquire))
SPINF();
}
void unlock() {
serving.store(serving.load() + 1, std::memory_order_release);
}
};
static int nop() {
return 0;
}
using ticket_spin = ticket_template<nop>;
using ticket_yield = ticket_template<sched_yield>;
class blocking_ticket {
std::atomic<size_t> dispenser{}, serving{};
std::mutex mutex;
std::condition_variable cvar;
public:
void lock();
void unlock();
};
class fifo_queued {
struct queue_elem;
std::mutex mutex;
std::deque<queue_elem*> cvar_queue;
bool locked = false;
public:
void lock();
void unlock();
};
/**
* mutex3 from "Futexes Are Tricky"
* https://akkadia.org/drepper/futex.pdf
*/
class mutex3 {
public:
mutex3() : val(0) {}
void lock();
void unlock();
private:
int val;
};
} // namespace locks
#endif