-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathMutex.h
58 lines (44 loc) · 816 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
// *****************************************************************************
//
// Copyright (c) 2013, Pleora Technologies Inc., All rights reserved.
//
// *****************************************************************************
#ifndef __MUTEX_H__
#define __MUTEX_H__
#ifndef _AFXDLL
#include <pthread.h>
#endif
class Mutex
{
#ifdef _AFXDLL
DECLARE_DYNAMIC( Mutex )
#endif // _AFXDLL
public:
Mutex();
~Mutex();
void Lock();
void Unlock();
protected:
private:
#ifdef _AFXDLL
CMutex mMutex;
#else
pthread_mutex_t mMutex;
#endif
};
class MutexHolder
{
public:
MutexHolder( Mutex *mutex )
{
mMutex = mutex;
mMutex->Lock();
}
~MutexHolder()
{
mMutex->Unlock();
}
private:
Mutex *mMutex;
};
#endif // __MUTEX_H__