-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathMutex.h
62 lines (46 loc) · 799 Bytes
/
Mutex.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
#ifndef ____MUTEX_H___
#define ____MUTEX_H___
#include <windows.h>
#include <winbase.h>
class Mutex
{
private:
void *handle;
Mutex(const Mutex &);
Mutex& operator=(const Mutex &);
public:
inline Mutex()
{
handle = (void *)CreateMutexA(nullptr, false, nullptr);
}
inline ~Mutex()
{
CloseHandle((HANDLE)handle);
}
inline void Lock()
{
WaitForSingleObject((HANDLE)handle, INFINITE);
}
inline void Unlock()
{
ReleaseMutex((HANDLE)handle);
}
};
class MutexLocker
{
private:
Mutex *mutex;
MutexLocker();
MutexLocker(const MutexLocker &);
MutexLocker& operator=(const MutexLocker &);
public:
inline MutexLocker(Mutex *mutex) : mutex(mutex)
{
mutex->Lock();
}
inline ~MutexLocker()
{
mutex->Unlock();
}
};
#endif // ___MUTEX_H___