blob: 704bf60e412a921009b17d29878fc408f797dfff (
plain)
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
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#ifndef mozilla_PlatformMutex_h
#define mozilla_PlatformMutex_h
#include <utility>
#include "mozilla/Attributes.h"
#if !defined(XP_WIN)
# include <pthread.h>
#endif
namespace mozilla {
namespace detail {
class ConditionVariableImpl;
class MutexImpl {
public:
struct PlatformData;
explicit MFBT_API MutexImpl();
MFBT_API ~MutexImpl();
protected:
MFBT_API void lock();
MFBT_API void unlock();
// We have a separate, forwarding API so internal uses don't have to go
// through the PLT.
MFBT_API bool tryLock();
private:
MutexImpl(const MutexImpl&) = delete;
void operator=(const MutexImpl&) = delete;
MutexImpl(MutexImpl&&) = delete;
void operator=(MutexImpl&&) = delete;
bool operator==(const MutexImpl& rhs) = delete;
void mutexLock();
bool mutexTryLock();
PlatformData* platformData();
#if !defined(XP_WIN)
void* platformData_[sizeof(pthread_mutex_t) / sizeof(void*)];
static_assert(sizeof(pthread_mutex_t) / sizeof(void*) != 0 &&
sizeof(pthread_mutex_t) % sizeof(void*) == 0,
"pthread_mutex_t must have pointer alignment");
#else
void* platformData_[6];
#endif
friend class mozilla::detail::ConditionVariableImpl;
};
} // namespace detail
} // namespace mozilla
#endif // mozilla_PlatformMutex_h
|