-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMutex.hpp
82 lines (74 loc) · 1.31 KB
/
Mutex.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
#ifndef MUTEX_H
#define MUTEX_H
#ifdef WIN32
#define WIN32_LEAN_AND_MEAN
#include <windows.h>
#else
#include <pthread.h>
#endif
class Mutex
{
public:
Mutex()
{
_error = false;
#ifdef WIN32
_mutex = CreateMutex(NULL, FALSE, NULL);
if(!_mutex)
{
_error = true;
}
#else
int ret = pthread_mutex_init(&_mutex, NULL);
if(ret)
{
_error = true;
}
#endif
}
~Mutex()
{
if(!_error)
{
#ifdef WIN32
CloseHandle(_mutex);
#else
pthread_mutex_destroy(&_mutex);
#endif
}
}
bool error()
{
return _error;
}
void lock()
{
if(!_error)
{
#ifdef WIN32
WaitForSingleObject(_mutex, INFINITE);
#else
pthread_mutex_lock(&_mutex);
#endif
}
}
void unlock()
{
if(!_error)
{
#ifdef WIN32
ReleaseMutex(_mutex);
#else
pthread_mutex_unlock(&_mutex);
#endif
}
}
protected:
bool _error;
#ifdef WIN32
HANDLE _mutex;
#else
pthread_mutex_t _mutex;
#endif
};
#endif