forked from Nyagamon/HCADecoder
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathSemaphore.h
41 lines (35 loc) · 820 Bytes
/
Semaphore.h
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
#pragma once
#ifndef SEMAPHORE_H
#define SEMAPHORE_H
#include <mutex>
#include <condition_variable>
#include <algorithm>
class Semaphore
{
public:
Semaphore(int count_ = 0) : count(count_) {}
Semaphore(unsigned int count_) : count(static_cast<int>(count_)) {}
void notify(int n = 1)
{
{
std::unique_lock<std::mutex> lock(mtx);
count += n;
}
for(int i = 0; i < n; ++i) { cv.notify_one(); }
}
void wait(int n = 1)
{
std::unique_lock<std::mutex> lock(mtx);
cv.wait(lock, [this, n] {
bool wake = count >= n;
if (!wake) cv.notify_one();
return wake;
});
count -= n;
}
private:
std::mutex mtx;
std::condition_variable cv;
int count;
};
#endif //SEMAPHORE_H