This repository was archived by the owner on Nov 1, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 503
Expand file tree
/
Copy pathpal_threading.h
More file actions
154 lines (122 loc) · 3.17 KB
/
pal_threading.h
File metadata and controls
154 lines (122 loc) · 3.17 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
150
151
152
153
154
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
#pragma once
#include "pal_common.h"
#include <stdlib.h>
#include <pthread.h>
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// LowLevelMutex
// Wraps a non-recursive mutex
class LowLevelMutex
{
protected:
pthread_mutex_t m_mutex;
#if DEBUG
private:
bool m_isLocked;
#endif
public:
LowLevelMutex(bool abortOnFailure, bool *successRef)
#if DEBUG
: m_isLocked(false)
#endif
{
assert(abortOnFailure || successRef != nullptr);
int error = pthread_mutex_init(&m_mutex, nullptr);
if (error != 0)
{
if (abortOnFailure)
{
abort();
}
*successRef = false;
return;
}
if (successRef != nullptr)
{
*successRef = true;
}
}
~LowLevelMutex()
{
int error = pthread_mutex_destroy(&m_mutex);
assert(error == 0);
UnusedInRelease(error);
}
protected:
void SetIsLocked(bool isLocked)
{
#if DEBUG
assert(m_isLocked != isLocked);
m_isLocked = isLocked;
#endif
}
public:
void Acquire()
{
int error = pthread_mutex_lock(&m_mutex);
assert(error == 0);
SetIsLocked(true);
UnusedInRelease(error);
}
bool TryAcquire()
{
int error = pthread_mutex_trylock(&m_mutex);
assert(error == 0 || error == EBUSY);
if (error == 0)
{
SetIsLocked(true);
}
return error == 0;
}
void Release()
{
SetIsLocked(false);
int error = pthread_mutex_unlock(&m_mutex);
assert(error == 0);
UnusedInRelease(error);
}
LowLevelMutex(const LowLevelMutex &other) = delete;
LowLevelMutex &operator =(const LowLevelMutex &other) = delete;
};
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// LowLevelMonitor
// Wraps a non-recursive mutex and condition
class LowLevelMonitor final : public LowLevelMutex
{
private:
pthread_cond_t m_condition;
public:
LowLevelMonitor(bool abortOnFailure, bool *successRef);
~LowLevelMonitor()
{
int error = pthread_cond_destroy(&m_condition);
assert(error == 0);
UnusedInRelease(error);
}
public:
void Wait()
{
SetIsLocked(false);
int error = pthread_cond_wait(&m_condition, &m_mutex);
assert(error == 0);
SetIsLocked(true);
UnusedInRelease(error);
}
bool Wait(int32_t timeoutMilliseconds);
public:
void Signal()
{
int error = pthread_cond_signal(&m_condition);
assert(error == 0);
UnusedInRelease(error);
}
void SignalAll()
{
int error = pthread_cond_broadcast(&m_condition);
assert(error == 0);
UnusedInRelease(error);
}
LowLevelMonitor(const LowLevelMonitor &other) = delete;
LowLevelMonitor &operator =(const LowLevelMonitor &other) = delete;
};