aboutsummaryrefslogtreecommitdiff
path: root/src/3rdParty/efsw/platform/posix/MutexImpl.hpp
diff options
context:
space:
mode:
authorLi Jin <dragon-fly@qq.com>2022-11-15 17:23:46 +0800
committerLi Jin <dragon-fly@qq.com>2022-11-15 17:52:09 +0800
commit94f8330613877b3582d32bd11abd83a97b4399ad (patch)
tree5359de314be1ebde17f8d1e48632a97d18f9e50f /src/3rdParty/efsw/platform/posix/MutexImpl.hpp
parent60f8f00a022ac08701792b2897b72d8c99b50f52 (diff)
downloadyuescript-94f8330613877b3582d32bd11abd83a97b4399ad.tar.gz
yuescript-94f8330613877b3582d32bd11abd83a97b4399ad.tar.bz2
yuescript-94f8330613877b3582d32bd11abd83a97b4399ad.zip
adding -w option to Yuescript tool.
Diffstat (limited to 'src/3rdParty/efsw/platform/posix/MutexImpl.hpp')
-rwxr-xr-xsrc/3rdParty/efsw/platform/posix/MutexImpl.hpp30
1 files changed, 30 insertions, 0 deletions
diff --git a/src/3rdParty/efsw/platform/posix/MutexImpl.hpp b/src/3rdParty/efsw/platform/posix/MutexImpl.hpp
new file mode 100755
index 0000000..a33d827
--- /dev/null
+++ b/src/3rdParty/efsw/platform/posix/MutexImpl.hpp
@@ -0,0 +1,30 @@
1#ifndef EFSW_MUTEXIMPLPOSIX_HPP
2#define EFSW_MUTEXIMPLPOSIX_HPP
3
4#include <efsw/base.hpp>
5
6#if defined( EFSW_PLATFORM_POSIX )
7
8#include <pthread.h>
9
10namespace efsw { namespace Platform {
11
12class MutexImpl {
13 public:
14 MutexImpl();
15
16 ~MutexImpl();
17
18 void lock();
19
20 void unlock();
21
22 private:
23 pthread_mutex_t mMutex;
24};
25
26}} // namespace efsw::Platform
27
28#endif
29
30#endif