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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
|
///////////////////////////////////////////////////////////////////////////////
// Copyright (c) Electronic Arts Inc. All rights reserved.
///////////////////////////////////////////////////////////////////////////////
#include <EASTL/internal/config.h>
#include <EASTL/internal/thread_support.h>
#include <EASTL/type_traits.h>
#include <EASTL/memory.h>
#if defined(EA_PLATFORM_MICROSOFT)
EA_DISABLE_ALL_VC_WARNINGS();
#ifndef WIN32_LEAN_AND_MEAN
#define WIN32_LEAN_AND_MEAN
#endif
#ifdef __MINGW64__
#include <windows.h>
#else
#include <Windows.h>
#endif
EA_RESTORE_ALL_VC_WARNINGS();
#endif
namespace eastl
{
namespace Internal
{
#if EASTL_CPP11_MUTEX_ENABLED
// We use the C++11 Standard Library mutex as-is.
#else
/////////////////////////////////////////////////////////////////
// mutex
/////////////////////////////////////////////////////////////////
mutex::mutex()
{
#if defined(EA_PLATFORM_MICROSOFT)
static_assert(sizeof(mMutexBuffer) == sizeof(CRITICAL_SECTION), "mMutexBuffer size failure");
//static_assert(EA_ALIGN_OF(mMutexBuffer) >= EA_ALIGN_OF(CRITICAL_SECTION), "mMutexBuffer alignment failure"); // Enabling this causes the VS2012 compiler to crash.
#if !defined(_WIN32_WINNT) || (_WIN32_WINNT < 0x0403)
InitializeCriticalSection((CRITICAL_SECTION*)mMutexBuffer);
#elif !EA_WINAPI_FAMILY_PARTITION(EA_WINAPI_PARTITION_DESKTOP)
BOOL result = InitializeCriticalSectionEx((CRITICAL_SECTION*)mMutexBuffer, 10, 0);
EASTL_ASSERT(result != 0); EA_UNUSED(result);
#else
BOOL result = InitializeCriticalSectionAndSpinCount((CRITICAL_SECTION*)mMutexBuffer, 10);
EASTL_ASSERT(result != 0); EA_UNUSED(result);
#endif
#elif defined(EA_PLATFORM_POSIX)
pthread_mutexattr_t attr;
pthread_mutexattr_init(&attr);
pthread_mutexattr_setpshared(&attr, PTHREAD_PROCESS_PRIVATE);
pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_RECURSIVE);
pthread_mutex_init(&mMutex, &attr);
pthread_mutexattr_destroy(&attr);
#endif
}
mutex::~mutex()
{
#if defined(EA_PLATFORM_MICROSOFT)
DeleteCriticalSection((CRITICAL_SECTION*)mMutexBuffer);
#elif defined(EA_PLATFORM_POSIX)
pthread_mutex_destroy(&mMutex);
#endif
}
void mutex::lock()
{
#if defined(EA_PLATFORM_MICROSOFT)
EnterCriticalSection((CRITICAL_SECTION*)mMutexBuffer);
#elif defined(EA_PLATFORM_POSIX)
pthread_mutex_lock(&mMutex);
#else
EASTL_FAIL_MSG("EASTL thread safety is not implemented yet. See EAThread for how to do this for the given platform.");
#endif
}
void mutex::unlock()
{
#if defined(EA_PLATFORM_MICROSOFT)
LeaveCriticalSection((CRITICAL_SECTION*)mMutexBuffer);
#elif defined(EA_PLATFORM_POSIX)
pthread_mutex_unlock(&mMutex);
#endif
}
#endif
/////////////////////////////////////////////////////////////////
// shared_ptr_auto_mutex
/////////////////////////////////////////////////////////////////
// We could solve this by having single global mutex for all shared_ptrs, a set of mutexes for shared_ptrs,
// a single mutex for every shared_ptr, or have a template parameter that enables mutexes for just some shared_ptrs.
eastl::late_constructed<mutex, true> gSharedPtrMutex;
shared_ptr_auto_mutex::shared_ptr_auto_mutex(const void* /*pSharedPtr*/)
: auto_mutex(*gSharedPtrMutex.get())
{
}
} // namespace Internal
} // namespace eastl
|