blob: 0583df933a06eea8ff6fffafd79ccd83aa73fd9f [file] [log] [blame]
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001// -*- C++ -*-
2//===----------------------------------------------------------------------===//
3//
Howard Hinnantf5256e12010-05-11 21:36:01 +00004// The LLVM Compiler Infrastructure
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005//
Howard Hinnantb64f8b02010-11-16 22:09:02 +00006// This file is dual licensed under the MIT and the University of Illinois Open
7// Source Licenses. See LICENSE.TXT for details.
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00008//
9//===----------------------------------------------------------------------===//
10
11#ifndef _LIBCPP___MUTEX_BASE
12#define _LIBCPP___MUTEX_BASE
13
14#include <__config>
15#include <chrono>
16#include <system_error>
17#include <pthread.h>
18
Howard Hinnant08e17472011-10-17 20:05:10 +000019#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000020#pragma GCC system_header
Howard Hinnant08e17472011-10-17 20:05:10 +000021#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000022
Howard Hinnantac417fa2010-11-28 19:41:07 +000023#ifdef _LIBCPP_SHARED_LOCK
24
25namespace ting {
Howard Hinnant2b1b2d42011-06-14 19:58:17 +000026template <class _Mutex> class shared_lock;
27template <class _Mutex> class upgrade_lock;
Howard Hinnantac417fa2010-11-28 19:41:07 +000028}
29
30#endif // _LIBCPP_SHARED_LOCK
31
32
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000033_LIBCPP_BEGIN_NAMESPACE_STD
34
Howard Hinnant83eade62013-03-06 23:30:19 +000035class _LIBCPP_TYPE_VIS mutex
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000036{
37 pthread_mutex_t __m_;
38
39public:
Howard Hinnant333f50d2010-09-21 20:16:37 +000040 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant384608e2012-07-07 20:01:52 +000041#ifndef _LIBCPP_HAS_NO_CONSTEXPR
Howard Hinnant5c90cba2012-09-11 16:10:20 +000042 constexpr mutex() _NOEXCEPT : __m_(PTHREAD_MUTEX_INITIALIZER) {}
Howard Hinnant384608e2012-07-07 20:01:52 +000043#else
Howard Hinnant499c61f2012-07-21 16:13:09 +000044 mutex() _NOEXCEPT {__m_ = (pthread_mutex_t)PTHREAD_MUTEX_INITIALIZER;}
Howard Hinnant384608e2012-07-07 20:01:52 +000045#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000046 ~mutex();
47
48private:
49 mutex(const mutex&);// = delete;
50 mutex& operator=(const mutex&);// = delete;
51
52public:
53 void lock();
Howard Hinnant499c61f2012-07-21 16:13:09 +000054 bool try_lock() _NOEXCEPT;
55 void unlock() _NOEXCEPT;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000056
57 typedef pthread_mutex_t* native_handle_type;
Howard Hinnant333f50d2010-09-21 20:16:37 +000058 _LIBCPP_INLINE_VISIBILITY native_handle_type native_handle() {return &__m_;}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000059};
60
Howard Hinnant83eade62013-03-06 23:30:19 +000061struct _LIBCPP_TYPE_VIS defer_lock_t {};
62struct _LIBCPP_TYPE_VIS try_to_lock_t {};
63struct _LIBCPP_TYPE_VIS adopt_lock_t {};
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000064
Howard Hinnant499c61f2012-07-21 16:13:09 +000065#if defined(_LIBCPP_HAS_NO_CONSTEXPR) || defined(_LIBCPP_BUILDING_MUTEX)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000066
Howard Hinnant499c61f2012-07-21 16:13:09 +000067extern const defer_lock_t defer_lock;
68extern const try_to_lock_t try_to_lock;
69extern const adopt_lock_t adopt_lock;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000070
Howard Hinnant499c61f2012-07-21 16:13:09 +000071#else
72
73constexpr defer_lock_t defer_lock = defer_lock_t();
74constexpr try_to_lock_t try_to_lock = try_to_lock_t();
75constexpr adopt_lock_t adopt_lock = adopt_lock_t();
76
77#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000078
79template <class _Mutex>
Howard Hinnant83eade62013-03-06 23:30:19 +000080class _LIBCPP_TYPE_VIS lock_guard
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000081{
82public:
83 typedef _Mutex mutex_type;
84
85private:
86 mutex_type& __m_;
87public:
88
Howard Hinnant333f50d2010-09-21 20:16:37 +000089 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000090 explicit lock_guard(mutex_type& __m)
91 : __m_(__m) {__m_.lock();}
Howard Hinnant333f50d2010-09-21 20:16:37 +000092 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000093 lock_guard(mutex_type& __m, adopt_lock_t)
94 : __m_(__m) {}
Howard Hinnant333f50d2010-09-21 20:16:37 +000095 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000096 ~lock_guard() {__m_.unlock();}
97
98private:
99 lock_guard(lock_guard const&);// = delete;
100 lock_guard& operator=(lock_guard const&);// = delete;
101};
102
103template <class _Mutex>
Howard Hinnant83eade62013-03-06 23:30:19 +0000104class _LIBCPP_TYPE_VIS unique_lock
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000105{
106public:
107 typedef _Mutex mutex_type;
108
109private:
110 mutex_type* __m_;
111 bool __owns_;
112
113public:
Howard Hinnant333f50d2010-09-21 20:16:37 +0000114 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant499c61f2012-07-21 16:13:09 +0000115 unique_lock() _NOEXCEPT : __m_(nullptr), __owns_(false) {}
Howard Hinnant333f50d2010-09-21 20:16:37 +0000116 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000117 explicit unique_lock(mutex_type& __m)
118 : __m_(&__m), __owns_(true) {__m_->lock();}
Howard Hinnant333f50d2010-09-21 20:16:37 +0000119 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant499c61f2012-07-21 16:13:09 +0000120 unique_lock(mutex_type& __m, defer_lock_t) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000121 : __m_(&__m), __owns_(false) {}
Howard Hinnant333f50d2010-09-21 20:16:37 +0000122 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000123 unique_lock(mutex_type& __m, try_to_lock_t)
124 : __m_(&__m), __owns_(__m.try_lock()) {}
Howard Hinnant333f50d2010-09-21 20:16:37 +0000125 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000126 unique_lock(mutex_type& __m, adopt_lock_t)
127 : __m_(&__m), __owns_(true) {}
128 template <class _Clock, class _Duration>
Howard Hinnant333f50d2010-09-21 20:16:37 +0000129 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000130 unique_lock(mutex_type& __m, const chrono::time_point<_Clock, _Duration>& __t)
131 : __m_(&__m), __owns_(__m.try_lock_until(__t)) {}
132 template <class _Rep, class _Period>
Howard Hinnant333f50d2010-09-21 20:16:37 +0000133 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000134 unique_lock(mutex_type& __m, const chrono::duration<_Rep, _Period>& __d)
135 : __m_(&__m), __owns_(__m.try_lock_for(__d)) {}
Howard Hinnant333f50d2010-09-21 20:16:37 +0000136 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000137 ~unique_lock()
138 {
139 if (__owns_)
140 __m_->unlock();
141 }
142
143private:
144 unique_lock(unique_lock const&); // = delete;
145 unique_lock& operator=(unique_lock const&); // = delete;
146
147public:
Howard Hinnant73d21a42010-09-04 23:28:19 +0000148#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnant333f50d2010-09-21 20:16:37 +0000149 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant499c61f2012-07-21 16:13:09 +0000150 unique_lock(unique_lock&& __u) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000151 : __m_(__u.__m_), __owns_(__u.__owns_)
152 {__u.__m_ = nullptr; __u.__owns_ = false;}
Howard Hinnant333f50d2010-09-21 20:16:37 +0000153 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant499c61f2012-07-21 16:13:09 +0000154 unique_lock& operator=(unique_lock&& __u) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000155 {
156 if (__owns_)
157 __m_->unlock();
158 __m_ = __u.__m_;
159 __owns_ = __u.__owns_;
160 __u.__m_ = nullptr;
161 __u.__owns_ = false;
162 return *this;
163 }
Howard Hinnantac417fa2010-11-28 19:41:07 +0000164
165#ifdef _LIBCPP_SHARED_LOCK
166
167 unique_lock(ting::shared_lock<mutex_type>&&, try_to_lock_t);
168 template <class _Clock, class _Duration>
169 unique_lock(ting::shared_lock<mutex_type>&&,
170 const chrono::time_point<_Clock, _Duration>&);
171 template <class _Rep, class _Period>
172 unique_lock(ting::shared_lock<mutex_type>&&,
173 const chrono::duration<_Rep, _Period>&);
174
175 explicit unique_lock(ting::upgrade_lock<mutex_type>&&);
176 unique_lock(ting::upgrade_lock<mutex_type>&&, try_to_lock_t);
177 template <class _Clock, class _Duration>
178 unique_lock(ting::upgrade_lock<mutex_type>&&,
179 const chrono::time_point<_Clock, _Duration>&);
180 template <class _Rep, class _Period>
181 unique_lock(ting::upgrade_lock<mutex_type>&&,
182 const chrono::duration<_Rep, _Period>&);
183
184#endif // _LIBCPP_SHARED_LOCK
185
Howard Hinnant73d21a42010-09-04 23:28:19 +0000186#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000187
188 void lock();
189 bool try_lock();
190
191 template <class _Rep, class _Period>
192 bool try_lock_for(const chrono::duration<_Rep, _Period>& __d);
193 template <class _Clock, class _Duration>
194 bool try_lock_until(const chrono::time_point<_Clock, _Duration>& __t);
195
196 void unlock();
197
Howard Hinnant333f50d2010-09-21 20:16:37 +0000198 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant499c61f2012-07-21 16:13:09 +0000199 void swap(unique_lock& __u) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000200 {
Howard Hinnant0949eed2011-06-30 21:18:19 +0000201 _VSTD::swap(__m_, __u.__m_);
202 _VSTD::swap(__owns_, __u.__owns_);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000203 }
Howard Hinnant333f50d2010-09-21 20:16:37 +0000204 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant499c61f2012-07-21 16:13:09 +0000205 mutex_type* release() _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000206 {
207 mutex_type* __m = __m_;
208 __m_ = nullptr;
209 __owns_ = false;
210 return __m;
211 }
212
Howard Hinnant333f50d2010-09-21 20:16:37 +0000213 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant499c61f2012-07-21 16:13:09 +0000214 bool owns_lock() const _NOEXCEPT {return __owns_;}
Howard Hinnant333f50d2010-09-21 20:16:37 +0000215 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant77861882012-02-21 21:46:43 +0000216 _LIBCPP_EXPLICIT
Howard Hinnant499c61f2012-07-21 16:13:09 +0000217 operator bool () const _NOEXCEPT {return __owns_;}
Howard Hinnant333f50d2010-09-21 20:16:37 +0000218 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant499c61f2012-07-21 16:13:09 +0000219 mutex_type* mutex() const _NOEXCEPT {return __m_;}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000220};
221
222template <class _Mutex>
223void
224unique_lock<_Mutex>::lock()
225{
226 if (__m_ == nullptr)
227 __throw_system_error(EPERM, "unique_lock::lock: references null mutex");
228 if (__owns_)
229 __throw_system_error(EDEADLK, "unique_lock::lock: already locked");
230 __m_->lock();
231 __owns_ = true;
232}
233
234template <class _Mutex>
235bool
236unique_lock<_Mutex>::try_lock()
237{
238 if (__m_ == nullptr)
239 __throw_system_error(EPERM, "unique_lock::try_lock: references null mutex");
240 if (__owns_)
241 __throw_system_error(EDEADLK, "unique_lock::try_lock: already locked");
242 __owns_ = __m_->try_lock();
243 return __owns_;
244}
245
246template <class _Mutex>
247template <class _Rep, class _Period>
248bool
249unique_lock<_Mutex>::try_lock_for(const chrono::duration<_Rep, _Period>& __d)
250{
251 if (__m_ == nullptr)
252 __throw_system_error(EPERM, "unique_lock::try_lock_for: references null mutex");
253 if (__owns_)
254 __throw_system_error(EDEADLK, "unique_lock::try_lock_for: already locked");
255 __owns_ = __m_->try_lock_for(__d);
256 return __owns_;
257}
258
259template <class _Mutex>
260template <class _Clock, class _Duration>
261bool
262unique_lock<_Mutex>::try_lock_until(const chrono::time_point<_Clock, _Duration>& __t)
263{
264 if (__m_ == nullptr)
265 __throw_system_error(EPERM, "unique_lock::try_lock_until: references null mutex");
266 if (__owns_)
267 __throw_system_error(EDEADLK, "unique_lock::try_lock_until: already locked");
268 __owns_ = __m_->try_lock_until(__t);
269 return __owns_;
270}
271
272template <class _Mutex>
273void
274unique_lock<_Mutex>::unlock()
275{
276 if (!__owns_)
277 __throw_system_error(EPERM, "unique_lock::unlock: not locked");
278 __m_->unlock();
279 __owns_ = false;
280}
281
282template <class _Mutex>
Howard Hinnant333f50d2010-09-21 20:16:37 +0000283inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000284void
Howard Hinnant499c61f2012-07-21 16:13:09 +0000285swap(unique_lock<_Mutex>& __x, unique_lock<_Mutex>& __y) _NOEXCEPT
286 {__x.swap(__y);}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000287
Howard Hinnant83eade62013-03-06 23:30:19 +0000288struct _LIBCPP_TYPE_VIS cv_status
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000289{
Howard Hinnant9c0df142012-10-30 19:06:59 +0000290 enum __lx {
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000291 no_timeout,
292 timeout
293 };
294
Howard Hinnant9c0df142012-10-30 19:06:59 +0000295 __lx __v_;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000296
Howard Hinnant9c0df142012-10-30 19:06:59 +0000297 _LIBCPP_INLINE_VISIBILITY cv_status(__lx __v) : __v_(__v) {}
Howard Hinnant333f50d2010-09-21 20:16:37 +0000298 _LIBCPP_INLINE_VISIBILITY operator int() const {return __v_;}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000299
300};
301
Howard Hinnant83eade62013-03-06 23:30:19 +0000302class _LIBCPP_TYPE_VIS condition_variable
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000303{
304 pthread_cond_t __cv_;
305public:
Howard Hinnant333f50d2010-09-21 20:16:37 +0000306 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant384608e2012-07-07 20:01:52 +0000307#ifndef _LIBCPP_HAS_NO_CONSTEXPR
Howard Hinnant5c90cba2012-09-11 16:10:20 +0000308 constexpr condition_variable() : __cv_(PTHREAD_COND_INITIALIZER) {}
Howard Hinnant384608e2012-07-07 20:01:52 +0000309#else
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000310 condition_variable() {__cv_ = (pthread_cond_t)PTHREAD_COND_INITIALIZER;}
Howard Hinnant384608e2012-07-07 20:01:52 +0000311#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000312 ~condition_variable();
313
314private:
315 condition_variable(const condition_variable&); // = delete;
316 condition_variable& operator=(const condition_variable&); // = delete;
317
318public:
Howard Hinnantc8f74132012-07-21 16:32:53 +0000319 void notify_one() _NOEXCEPT;
320 void notify_all() _NOEXCEPT;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000321
322 void wait(unique_lock<mutex>& __lk);
323 template <class _Predicate>
324 void wait(unique_lock<mutex>& __lk, _Predicate __pred);
325
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000326 template <class _Clock, class _Duration>
327 cv_status
328 wait_until(unique_lock<mutex>& __lk,
329 const chrono::time_point<_Clock, _Duration>& __t);
330
331 template <class _Clock, class _Duration, class _Predicate>
332 bool
333 wait_until(unique_lock<mutex>& __lk,
334 const chrono::time_point<_Clock, _Duration>& __t,
335 _Predicate __pred);
336
337 template <class _Rep, class _Period>
338 cv_status
339 wait_for(unique_lock<mutex>& __lk,
340 const chrono::duration<_Rep, _Period>& __d);
341
342 template <class _Rep, class _Period, class _Predicate>
343 bool
344 wait_for(unique_lock<mutex>& __lk,
345 const chrono::duration<_Rep, _Period>& __d,
346 _Predicate __pred);
347
348 typedef pthread_cond_t* native_handle_type;
Howard Hinnant333f50d2010-09-21 20:16:37 +0000349 _LIBCPP_INLINE_VISIBILITY native_handle_type native_handle() {return &__cv_;}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000350
351private:
352 void __do_timed_wait(unique_lock<mutex>& __lk,
353 chrono::time_point<chrono::system_clock, chrono::nanoseconds>);
354};
355
356template <class _To, class _Rep, class _Period>
Howard Hinnant333f50d2010-09-21 20:16:37 +0000357inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000358typename enable_if
359<
360 chrono::__is_duration<_To>::value,
361 _To
362>::type
363__ceil(chrono::duration<_Rep, _Period> __d)
364{
365 using namespace chrono;
366 _To __r = duration_cast<_To>(__d);
367 if (__r < __d)
368 ++__r;
369 return __r;
370}
371
372template <class _Predicate>
373void
374condition_variable::wait(unique_lock<mutex>& __lk, _Predicate __pred)
375{
376 while (!__pred())
377 wait(__lk);
378}
379
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000380template <class _Clock, class _Duration>
381cv_status
382condition_variable::wait_until(unique_lock<mutex>& __lk,
383 const chrono::time_point<_Clock, _Duration>& __t)
384{
385 using namespace chrono;
Howard Hinnantcf115d22012-08-30 19:14:33 +0000386 wait_for(__lk, __t - _Clock::now());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000387 return _Clock::now() < __t ? cv_status::no_timeout : cv_status::timeout;
388}
389
390template <class _Clock, class _Duration, class _Predicate>
391bool
392condition_variable::wait_until(unique_lock<mutex>& __lk,
393 const chrono::time_point<_Clock, _Duration>& __t,
394 _Predicate __pred)
395{
396 while (!__pred())
397 {
398 if (wait_until(__lk, __t) == cv_status::timeout)
399 return __pred();
400 }
401 return true;
402}
403
404template <class _Rep, class _Period>
405cv_status
406condition_variable::wait_for(unique_lock<mutex>& __lk,
407 const chrono::duration<_Rep, _Period>& __d)
408{
409 using namespace chrono;
Howard Hinnantcf115d22012-08-30 19:14:33 +0000410 if (__d <= __d.zero())
411 return cv_status::timeout;
412 typedef time_point<system_clock, duration<long double, nano> > __sys_tpf;
413 typedef time_point<system_clock, nanoseconds> __sys_tpi;
414 __sys_tpf _Max = __sys_tpi::max();
Howard Hinnantf8f85212010-11-20 19:16:30 +0000415 system_clock::time_point __s_now = system_clock::now();
416 steady_clock::time_point __c_now = steady_clock::now();
Howard Hinnantcf115d22012-08-30 19:14:33 +0000417 if (_Max - __d > __s_now)
418 __do_timed_wait(__lk, __s_now + __ceil<nanoseconds>(__d));
419 else
420 __do_timed_wait(__lk, __sys_tpi::max());
Howard Hinnantf8f85212010-11-20 19:16:30 +0000421 return steady_clock::now() - __c_now < __d ? cv_status::no_timeout :
422 cv_status::timeout;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000423}
424
425template <class _Rep, class _Period, class _Predicate>
Howard Hinnant333f50d2010-09-21 20:16:37 +0000426inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000427bool
428condition_variable::wait_for(unique_lock<mutex>& __lk,
429 const chrono::duration<_Rep, _Period>& __d,
430 _Predicate __pred)
431{
Howard Hinnantf8f85212010-11-20 19:16:30 +0000432 return wait_until(__lk, chrono::steady_clock::now() + __d,
Howard Hinnant0949eed2011-06-30 21:18:19 +0000433 _VSTD::move(__pred));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000434}
435
436_LIBCPP_END_NAMESPACE_STD
437
438#endif // _LIBCPP___MUTEX_BASE