blob: 0c964ad6b60104df9f26273cb024045c78a0736e (
plain) (
blame)
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
#include "defaults.h"
#include <util/generic/ptr.h>
//named sempahore
class TSemaphore {
public:
TSemaphore(const char* name, ui32 maxFreeCount);
~TSemaphore();
//Increase the semaphore counter.
void Release() noexcept;
//Keep a thread held while the semaphore counter is equal 0.
void Acquire() noexcept;
//Try to enter the semaphore gate. A non-blocking variant of Acquire.
//Returns 'true' if the semaphore counter decreased
bool TryAcquire() noexcept;
private:
class TImpl;
THolder<TImpl> Impl_;
};
//unnamed semaphore, faster, than previous
class TFastSemaphore {
public:
TFastSemaphore(ui32 maxFreeCount);
~TFastSemaphore();
void Release() noexcept;
void Acquire() noexcept;
bool TryAcquire() noexcept;
private:
class TImpl;
THolder<TImpl> Impl_;
};
|