Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1 | // -*- C++ -*- |
| 2 | //===--------------------------- mutex ------------------------------------===// |
| 3 | // |
Howard Hinnant | f5256e1 | 2010-05-11 21:36:01 +0000 | [diff] [blame] | 4 | // The LLVM Compiler Infrastructure |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 5 | // |
Howard Hinnant | b64f8b0 | 2010-11-16 22:09:02 +0000 | [diff] [blame] | 6 | // This file is dual licensed under the MIT and the University of Illinois Open |
| 7 | // Source Licenses. See LICENSE.TXT for details. |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 8 | // |
| 9 | //===----------------------------------------------------------------------===// |
| 10 | |
| 11 | #ifndef _LIBCPP_MUTEX |
| 12 | #define _LIBCPP_MUTEX |
| 13 | |
| 14 | /* |
| 15 | mutex synopsis |
| 16 | |
| 17 | namespace std |
| 18 | { |
| 19 | |
| 20 | class mutex |
| 21 | { |
| 22 | public: |
Howard Hinnant | 499c61f | 2012-07-21 16:13:09 +0000 | [diff] [blame] | 23 | constexpr mutex() noexcept; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 24 | ~mutex(); |
| 25 | |
| 26 | mutex(const mutex&) = delete; |
| 27 | mutex& operator=(const mutex&) = delete; |
| 28 | |
| 29 | void lock(); |
| 30 | bool try_lock(); |
| 31 | void unlock(); |
| 32 | |
| 33 | typedef pthread_mutex_t* native_handle_type; |
| 34 | native_handle_type native_handle(); |
| 35 | }; |
| 36 | |
| 37 | class recursive_mutex |
| 38 | { |
| 39 | public: |
| 40 | recursive_mutex(); |
| 41 | ~recursive_mutex(); |
| 42 | |
| 43 | recursive_mutex(const recursive_mutex&) = delete; |
| 44 | recursive_mutex& operator=(const recursive_mutex&) = delete; |
| 45 | |
| 46 | void lock(); |
Howard Hinnant | 499c61f | 2012-07-21 16:13:09 +0000 | [diff] [blame] | 47 | bool try_lock() noexcept; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 48 | void unlock(); |
| 49 | |
| 50 | typedef pthread_mutex_t* native_handle_type; |
| 51 | native_handle_type native_handle(); |
| 52 | }; |
| 53 | |
| 54 | class timed_mutex |
| 55 | { |
| 56 | public: |
| 57 | timed_mutex(); |
| 58 | ~timed_mutex(); |
| 59 | |
| 60 | timed_mutex(const timed_mutex&) = delete; |
| 61 | timed_mutex& operator=(const timed_mutex&) = delete; |
| 62 | |
| 63 | void lock(); |
| 64 | bool try_lock(); |
| 65 | template <class Rep, class Period> |
| 66 | bool try_lock_for(const chrono::duration<Rep, Period>& rel_time); |
| 67 | template <class Clock, class Duration> |
| 68 | bool try_lock_until(const chrono::time_point<Clock, Duration>& abs_time); |
| 69 | void unlock(); |
| 70 | }; |
| 71 | |
| 72 | class recursive_timed_mutex |
| 73 | { |
| 74 | public: |
| 75 | recursive_timed_mutex(); |
| 76 | ~recursive_timed_mutex(); |
| 77 | |
| 78 | recursive_timed_mutex(const recursive_timed_mutex&) = delete; |
| 79 | recursive_timed_mutex& operator=(const recursive_timed_mutex&) = delete; |
| 80 | |
| 81 | void lock(); |
Howard Hinnant | 499c61f | 2012-07-21 16:13:09 +0000 | [diff] [blame] | 82 | bool try_lock() noexcept; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 83 | template <class Rep, class Period> |
| 84 | bool try_lock_for(const chrono::duration<Rep, Period>& rel_time); |
| 85 | template <class Clock, class Duration> |
| 86 | bool try_lock_until(const chrono::time_point<Clock, Duration>& abs_time); |
| 87 | void unlock(); |
| 88 | }; |
| 89 | |
| 90 | struct defer_lock_t {}; |
| 91 | struct try_to_lock_t {}; |
| 92 | struct adopt_lock_t {}; |
| 93 | |
| 94 | constexpr defer_lock_t defer_lock{}; |
| 95 | constexpr try_to_lock_t try_to_lock{}; |
| 96 | constexpr adopt_lock_t adopt_lock{}; |
| 97 | |
| 98 | template <class Mutex> |
| 99 | class lock_guard |
| 100 | { |
| 101 | public: |
| 102 | typedef Mutex mutex_type; |
| 103 | |
| 104 | explicit lock_guard(mutex_type& m); |
| 105 | lock_guard(mutex_type& m, adopt_lock_t); |
| 106 | ~lock_guard(); |
| 107 | |
| 108 | lock_guard(lock_guard const&) = delete; |
| 109 | lock_guard& operator=(lock_guard const&) = delete; |
| 110 | }; |
| 111 | |
Marshall Clow | 59bcc87 | 2017-03-24 03:40:36 +0000 | [diff] [blame] | 112 | template <class... MutexTypes> |
| 113 | class scoped_lock // C++17 |
Eric Fiselier | 10b52a0 | 2016-06-14 03:48:09 +0000 | [diff] [blame] | 114 | { |
| 115 | public: |
Marshall Clow | 59bcc87 | 2017-03-24 03:40:36 +0000 | [diff] [blame] | 116 | using mutex_type = Mutex; // If MutexTypes... consists of the single type Mutex |
| 117 | |
| 118 | explicit scoped_lock(MutexTypes&... m); |
| 119 | scoped_lock(MutexTypes&... m, adopt_lock_t); |
| 120 | ~scoped_lock(); |
| 121 | scoped_lock(scoped_lock const&) = delete; |
| 122 | scoped_lock& operator=(scoped_lock const&) = delete; |
Eric Fiselier | 10b52a0 | 2016-06-14 03:48:09 +0000 | [diff] [blame] | 123 | private: |
| 124 | tuple<MutexTypes&...> pm; // exposition only |
| 125 | }; |
| 126 | |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 127 | template <class Mutex> |
| 128 | class unique_lock |
| 129 | { |
| 130 | public: |
| 131 | typedef Mutex mutex_type; |
Howard Hinnant | 499c61f | 2012-07-21 16:13:09 +0000 | [diff] [blame] | 132 | unique_lock() noexcept; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 133 | explicit unique_lock(mutex_type& m); |
Howard Hinnant | 499c61f | 2012-07-21 16:13:09 +0000 | [diff] [blame] | 134 | unique_lock(mutex_type& m, defer_lock_t) noexcept; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 135 | unique_lock(mutex_type& m, try_to_lock_t); |
| 136 | unique_lock(mutex_type& m, adopt_lock_t); |
| 137 | template <class Clock, class Duration> |
| 138 | unique_lock(mutex_type& m, const chrono::time_point<Clock, Duration>& abs_time); |
| 139 | template <class Rep, class Period> |
| 140 | unique_lock(mutex_type& m, const chrono::duration<Rep, Period>& rel_time); |
| 141 | ~unique_lock(); |
| 142 | |
| 143 | unique_lock(unique_lock const&) = delete; |
| 144 | unique_lock& operator=(unique_lock const&) = delete; |
| 145 | |
Howard Hinnant | 499c61f | 2012-07-21 16:13:09 +0000 | [diff] [blame] | 146 | unique_lock(unique_lock&& u) noexcept; |
| 147 | unique_lock& operator=(unique_lock&& u) noexcept; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 148 | |
| 149 | void lock(); |
| 150 | bool try_lock(); |
| 151 | |
| 152 | template <class Rep, class Period> |
| 153 | bool try_lock_for(const chrono::duration<Rep, Period>& rel_time); |
| 154 | template <class Clock, class Duration> |
| 155 | bool try_lock_until(const chrono::time_point<Clock, Duration>& abs_time); |
| 156 | |
| 157 | void unlock(); |
| 158 | |
Howard Hinnant | 499c61f | 2012-07-21 16:13:09 +0000 | [diff] [blame] | 159 | void swap(unique_lock& u) noexcept; |
| 160 | mutex_type* release() noexcept; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 161 | |
Howard Hinnant | 499c61f | 2012-07-21 16:13:09 +0000 | [diff] [blame] | 162 | bool owns_lock() const noexcept; |
| 163 | explicit operator bool () const noexcept; |
| 164 | mutex_type* mutex() const noexcept; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 165 | }; |
| 166 | |
| 167 | template <class Mutex> |
Howard Hinnant | 499c61f | 2012-07-21 16:13:09 +0000 | [diff] [blame] | 168 | void swap(unique_lock<Mutex>& x, unique_lock<Mutex>& y) noexcept; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 169 | |
| 170 | template <class L1, class L2, class... L3> |
| 171 | int try_lock(L1&, L2&, L3&...); |
| 172 | template <class L1, class L2, class... L3> |
| 173 | void lock(L1&, L2&, L3&...); |
| 174 | |
| 175 | struct once_flag |
| 176 | { |
Howard Hinnant | 499c61f | 2012-07-21 16:13:09 +0000 | [diff] [blame] | 177 | constexpr once_flag() noexcept; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 178 | |
| 179 | once_flag(const once_flag&) = delete; |
| 180 | once_flag& operator=(const once_flag&) = delete; |
| 181 | }; |
| 182 | |
| 183 | template<class Callable, class ...Args> |
| 184 | void call_once(once_flag& flag, Callable&& func, Args&&... args); |
| 185 | |
| 186 | } // std |
| 187 | |
| 188 | */ |
| 189 | |
| 190 | #include <__config> |
| 191 | #include <__mutex_base> |
| 192 | #include <functional> |
Eric Fiselier | c6e4669 | 2015-07-07 00:27:16 +0000 | [diff] [blame] | 193 | #include <memory> |
Eric Fiselier | 690d999 | 2017-04-18 23:05:08 +0000 | [diff] [blame] | 194 | #ifndef _LIBCPP_CXX03_LANG |
Howard Hinnant | ad935d5 | 2011-05-16 19:05:11 +0000 | [diff] [blame] | 195 | #include <tuple> |
| 196 | #endif |
Asiri Rathnayake | 35ff03b | 2016-05-06 14:06:29 +0000 | [diff] [blame] | 197 | #include <__threading_support> |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 198 | |
Howard Hinnant | 66c6f97 | 2011-11-29 16:45:27 +0000 | [diff] [blame] | 199 | #include <__undef_min_max> |
| 200 | |
Howard Hinnant | 08e1747 | 2011-10-17 20:05:10 +0000 | [diff] [blame] | 201 | #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 202 | #pragma GCC system_header |
Howard Hinnant | 08e1747 | 2011-10-17 20:05:10 +0000 | [diff] [blame] | 203 | #endif |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 204 | |
| 205 | _LIBCPP_BEGIN_NAMESPACE_STD |
| 206 | |
Jonathan Roelofs | 8d86b2e | 2014-09-05 19:45:05 +0000 | [diff] [blame] | 207 | #ifndef _LIBCPP_HAS_NO_THREADS |
| 208 | |
Howard Hinnant | 83eade6 | 2013-03-06 23:30:19 +0000 | [diff] [blame] | 209 | class _LIBCPP_TYPE_VIS recursive_mutex |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 210 | { |
Saleem Abdulrasool | 3451a65 | 2017-01-05 17:54:45 +0000 | [diff] [blame] | 211 | __libcpp_recursive_mutex_t __m_; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 212 | |
| 213 | public: |
| 214 | recursive_mutex(); |
| 215 | ~recursive_mutex(); |
| 216 | |
| 217 | private: |
| 218 | recursive_mutex(const recursive_mutex&); // = delete; |
| 219 | recursive_mutex& operator=(const recursive_mutex&); // = delete; |
| 220 | |
| 221 | public: |
| 222 | void lock(); |
Howard Hinnant | 499c61f | 2012-07-21 16:13:09 +0000 | [diff] [blame] | 223 | bool try_lock() _NOEXCEPT; |
| 224 | void unlock() _NOEXCEPT; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 225 | |
Saleem Abdulrasool | 3451a65 | 2017-01-05 17:54:45 +0000 | [diff] [blame] | 226 | typedef __libcpp_recursive_mutex_t* native_handle_type; |
| 227 | |
Howard Hinnant | b9af2ea | 2010-09-22 18:02:38 +0000 | [diff] [blame] | 228 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 229 | native_handle_type native_handle() {return &__m_;} |
| 230 | }; |
| 231 | |
Howard Hinnant | 83eade6 | 2013-03-06 23:30:19 +0000 | [diff] [blame] | 232 | class _LIBCPP_TYPE_VIS timed_mutex |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 233 | { |
| 234 | mutex __m_; |
| 235 | condition_variable __cv_; |
| 236 | bool __locked_; |
| 237 | public: |
| 238 | timed_mutex(); |
| 239 | ~timed_mutex(); |
| 240 | |
| 241 | private: |
| 242 | timed_mutex(const timed_mutex&); // = delete; |
| 243 | timed_mutex& operator=(const timed_mutex&); // = delete; |
| 244 | |
| 245 | public: |
| 246 | void lock(); |
Howard Hinnant | 499c61f | 2012-07-21 16:13:09 +0000 | [diff] [blame] | 247 | bool try_lock() _NOEXCEPT; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 248 | template <class _Rep, class _Period> |
Howard Hinnant | b9af2ea | 2010-09-22 18:02:38 +0000 | [diff] [blame] | 249 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 250 | bool try_lock_for(const chrono::duration<_Rep, _Period>& __d) |
Howard Hinnant | f8f8521 | 2010-11-20 19:16:30 +0000 | [diff] [blame] | 251 | {return try_lock_until(chrono::steady_clock::now() + __d);} |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 252 | template <class _Clock, class _Duration> |
Shoaib Meenai | 6b73492 | 2017-03-02 03:22:18 +0000 | [diff] [blame] | 253 | _LIBCPP_METHOD_TEMPLATE_IMPLICIT_INSTANTIATION_VIS |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 254 | bool try_lock_until(const chrono::time_point<_Clock, _Duration>& __t); |
Howard Hinnant | 499c61f | 2012-07-21 16:13:09 +0000 | [diff] [blame] | 255 | void unlock() _NOEXCEPT; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 256 | }; |
| 257 | |
| 258 | template <class _Clock, class _Duration> |
| 259 | bool |
| 260 | timed_mutex::try_lock_until(const chrono::time_point<_Clock, _Duration>& __t) |
| 261 | { |
| 262 | using namespace chrono; |
| 263 | unique_lock<mutex> __lk(__m_); |
| 264 | bool no_timeout = _Clock::now() < __t; |
| 265 | while (no_timeout && __locked_) |
| 266 | no_timeout = __cv_.wait_until(__lk, __t) == cv_status::no_timeout; |
| 267 | if (!__locked_) |
| 268 | { |
| 269 | __locked_ = true; |
| 270 | return true; |
| 271 | } |
| 272 | return false; |
| 273 | } |
| 274 | |
Howard Hinnant | 83eade6 | 2013-03-06 23:30:19 +0000 | [diff] [blame] | 275 | class _LIBCPP_TYPE_VIS recursive_timed_mutex |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 276 | { |
| 277 | mutex __m_; |
| 278 | condition_variable __cv_; |
| 279 | size_t __count_; |
Asiri Rathnayake | 35ff03b | 2016-05-06 14:06:29 +0000 | [diff] [blame] | 280 | __libcpp_thread_id __id_; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 281 | public: |
| 282 | recursive_timed_mutex(); |
| 283 | ~recursive_timed_mutex(); |
| 284 | |
| 285 | private: |
| 286 | recursive_timed_mutex(const recursive_timed_mutex&); // = delete; |
| 287 | recursive_timed_mutex& operator=(const recursive_timed_mutex&); // = delete; |
| 288 | |
| 289 | public: |
| 290 | void lock(); |
Howard Hinnant | 499c61f | 2012-07-21 16:13:09 +0000 | [diff] [blame] | 291 | bool try_lock() _NOEXCEPT; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 292 | template <class _Rep, class _Period> |
Howard Hinnant | b9af2ea | 2010-09-22 18:02:38 +0000 | [diff] [blame] | 293 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 294 | bool try_lock_for(const chrono::duration<_Rep, _Period>& __d) |
Howard Hinnant | f8f8521 | 2010-11-20 19:16:30 +0000 | [diff] [blame] | 295 | {return try_lock_until(chrono::steady_clock::now() + __d);} |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 296 | template <class _Clock, class _Duration> |
Shoaib Meenai | 6b73492 | 2017-03-02 03:22:18 +0000 | [diff] [blame] | 297 | _LIBCPP_METHOD_TEMPLATE_IMPLICIT_INSTANTIATION_VIS |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 298 | bool try_lock_until(const chrono::time_point<_Clock, _Duration>& __t); |
Howard Hinnant | 499c61f | 2012-07-21 16:13:09 +0000 | [diff] [blame] | 299 | void unlock() _NOEXCEPT; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 300 | }; |
| 301 | |
| 302 | template <class _Clock, class _Duration> |
| 303 | bool |
| 304 | recursive_timed_mutex::try_lock_until(const chrono::time_point<_Clock, _Duration>& __t) |
| 305 | { |
| 306 | using namespace chrono; |
Asiri Rathnayake | 35ff03b | 2016-05-06 14:06:29 +0000 | [diff] [blame] | 307 | __libcpp_thread_id __id = __libcpp_thread_get_current_id(); |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 308 | unique_lock<mutex> lk(__m_); |
Asiri Rathnayake | 35ff03b | 2016-05-06 14:06:29 +0000 | [diff] [blame] | 309 | if (__libcpp_thread_id_equal(__id, __id_)) |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 310 | { |
| 311 | if (__count_ == numeric_limits<size_t>::max()) |
| 312 | return false; |
| 313 | ++__count_; |
| 314 | return true; |
| 315 | } |
| 316 | bool no_timeout = _Clock::now() < __t; |
| 317 | while (no_timeout && __count_ != 0) |
| 318 | no_timeout = __cv_.wait_until(lk, __t) == cv_status::no_timeout; |
| 319 | if (__count_ == 0) |
| 320 | { |
| 321 | __count_ = 1; |
| 322 | __id_ = __id; |
| 323 | return true; |
| 324 | } |
| 325 | return false; |
| 326 | } |
| 327 | |
| 328 | template <class _L0, class _L1> |
| 329 | int |
| 330 | try_lock(_L0& __l0, _L1& __l1) |
| 331 | { |
| 332 | unique_lock<_L0> __u0(__l0, try_to_lock); |
| 333 | if (__u0.owns_lock()) |
| 334 | { |
| 335 | if (__l1.try_lock()) |
| 336 | { |
| 337 | __u0.release(); |
| 338 | return -1; |
| 339 | } |
| 340 | else |
| 341 | return 1; |
| 342 | } |
| 343 | return 0; |
| 344 | } |
| 345 | |
Eric Fiselier | 690d999 | 2017-04-18 23:05:08 +0000 | [diff] [blame] | 346 | #ifndef _LIBCPP_CXX03_LANG |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 347 | |
| 348 | template <class _L0, class _L1, class _L2, class... _L3> |
| 349 | int |
| 350 | try_lock(_L0& __l0, _L1& __l1, _L2& __l2, _L3&... __l3) |
| 351 | { |
| 352 | int __r = 0; |
| 353 | unique_lock<_L0> __u0(__l0, try_to_lock); |
| 354 | if (__u0.owns_lock()) |
| 355 | { |
| 356 | __r = try_lock(__l1, __l2, __l3...); |
| 357 | if (__r == -1) |
| 358 | __u0.release(); |
| 359 | else |
| 360 | ++__r; |
| 361 | } |
| 362 | return __r; |
| 363 | } |
| 364 | |
Eric Fiselier | 690d999 | 2017-04-18 23:05:08 +0000 | [diff] [blame] | 365 | #endif // _LIBCPP_CXX03_LANG |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 366 | |
| 367 | template <class _L0, class _L1> |
| 368 | void |
| 369 | lock(_L0& __l0, _L1& __l1) |
| 370 | { |
| 371 | while (true) |
| 372 | { |
| 373 | { |
| 374 | unique_lock<_L0> __u0(__l0); |
| 375 | if (__l1.try_lock()) |
| 376 | { |
| 377 | __u0.release(); |
| 378 | break; |
| 379 | } |
| 380 | } |
Asiri Rathnayake | 35ff03b | 2016-05-06 14:06:29 +0000 | [diff] [blame] | 381 | __libcpp_thread_yield(); |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 382 | { |
| 383 | unique_lock<_L1> __u1(__l1); |
| 384 | if (__l0.try_lock()) |
| 385 | { |
| 386 | __u1.release(); |
| 387 | break; |
| 388 | } |
| 389 | } |
Asiri Rathnayake | 35ff03b | 2016-05-06 14:06:29 +0000 | [diff] [blame] | 390 | __libcpp_thread_yield(); |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 391 | } |
| 392 | } |
| 393 | |
Eric Fiselier | 690d999 | 2017-04-18 23:05:08 +0000 | [diff] [blame] | 394 | #ifndef _LIBCPP_CXX03_LANG |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 395 | |
Howard Hinnant | 6fd4b66 | 2011-01-12 22:56:59 +0000 | [diff] [blame] | 396 | template <class _L0, class _L1, class _L2, class ..._L3> |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 397 | void |
Howard Hinnant | 6fd4b66 | 2011-01-12 22:56:59 +0000 | [diff] [blame] | 398 | __lock_first(int __i, _L0& __l0, _L1& __l1, _L2& __l2, _L3& ...__l3) |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 399 | { |
| 400 | while (true) |
| 401 | { |
| 402 | switch (__i) |
| 403 | { |
| 404 | case 0: |
| 405 | { |
| 406 | unique_lock<_L0> __u0(__l0); |
Howard Hinnant | 6fd4b66 | 2011-01-12 22:56:59 +0000 | [diff] [blame] | 407 | __i = try_lock(__l1, __l2, __l3...); |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 408 | if (__i == -1) |
| 409 | { |
| 410 | __u0.release(); |
| 411 | return; |
| 412 | } |
| 413 | } |
| 414 | ++__i; |
Asiri Rathnayake | 35ff03b | 2016-05-06 14:06:29 +0000 | [diff] [blame] | 415 | __libcpp_thread_yield(); |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 416 | break; |
| 417 | case 1: |
| 418 | { |
| 419 | unique_lock<_L1> __u1(__l1); |
Howard Hinnant | 6fd4b66 | 2011-01-12 22:56:59 +0000 | [diff] [blame] | 420 | __i = try_lock(__l2, __l3..., __l0); |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 421 | if (__i == -1) |
| 422 | { |
| 423 | __u1.release(); |
| 424 | return; |
| 425 | } |
| 426 | } |
Howard Hinnant | 6fd4b66 | 2011-01-12 22:56:59 +0000 | [diff] [blame] | 427 | if (__i == sizeof...(_L3) + 1) |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 428 | __i = 0; |
| 429 | else |
| 430 | __i += 2; |
Asiri Rathnayake | 35ff03b | 2016-05-06 14:06:29 +0000 | [diff] [blame] | 431 | __libcpp_thread_yield(); |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 432 | break; |
| 433 | default: |
Howard Hinnant | 6fd4b66 | 2011-01-12 22:56:59 +0000 | [diff] [blame] | 434 | __lock_first(__i - 2, __l2, __l3..., __l0, __l1); |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 435 | return; |
| 436 | } |
| 437 | } |
| 438 | } |
| 439 | |
Howard Hinnant | 6fd4b66 | 2011-01-12 22:56:59 +0000 | [diff] [blame] | 440 | template <class _L0, class _L1, class _L2, class ..._L3> |
Howard Hinnant | b9af2ea | 2010-09-22 18:02:38 +0000 | [diff] [blame] | 441 | inline _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 442 | void |
Howard Hinnant | 6fd4b66 | 2011-01-12 22:56:59 +0000 | [diff] [blame] | 443 | lock(_L0& __l0, _L1& __l1, _L2& __l2, _L3& ...__l3) |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 444 | { |
Howard Hinnant | 6fd4b66 | 2011-01-12 22:56:59 +0000 | [diff] [blame] | 445 | __lock_first(0, __l0, __l1, __l2, __l3...); |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 446 | } |
| 447 | |
Eric Fiselier | 10b52a0 | 2016-06-14 03:48:09 +0000 | [diff] [blame] | 448 | template <class _L0> |
| 449 | inline _LIBCPP_INLINE_VISIBILITY |
| 450 | void __unlock(_L0& __l0) { |
| 451 | __l0.unlock(); |
| 452 | } |
| 453 | |
| 454 | template <class _L0, class _L1> |
| 455 | inline _LIBCPP_INLINE_VISIBILITY |
| 456 | void __unlock(_L0& __l0, _L1& __l1) { |
| 457 | __l0.unlock(); |
| 458 | __l1.unlock(); |
| 459 | } |
| 460 | |
| 461 | template <class _L0, class _L1, class _L2, class ..._L3> |
| 462 | inline _LIBCPP_INLINE_VISIBILITY |
| 463 | void __unlock(_L0& __l0, _L1& __l1, _L2& __l2, _L3&... __l3) { |
| 464 | __l0.unlock(); |
| 465 | __l1.unlock(); |
| 466 | _VSTD::__unlock(__l2, __l3...); |
| 467 | } |
| 468 | |
Eric Fiselier | 690d999 | 2017-04-18 23:05:08 +0000 | [diff] [blame] | 469 | #endif // _LIBCPP_CXX03_LANG |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 470 | |
Marshall Clow | 0c70c79 | 2017-03-24 05:19:15 +0000 | [diff] [blame] | 471 | #if _LIBCPP_STD_VER > 14 |
| 472 | template <class ..._Mutexes> |
| 473 | class _LIBCPP_TEMPLATE_VIS scoped_lock; |
| 474 | |
| 475 | template <> |
| 476 | class _LIBCPP_TEMPLATE_VIS scoped_lock<> { |
| 477 | public: |
| 478 | explicit scoped_lock() {} |
| 479 | ~scoped_lock() = default; |
| 480 | |
| 481 | _LIBCPP_INLINE_VISIBILITY |
| 482 | explicit scoped_lock(adopt_lock_t) {} |
| 483 | |
| 484 | scoped_lock(scoped_lock const&) = delete; |
| 485 | scoped_lock& operator=(scoped_lock const&) = delete; |
| 486 | }; |
| 487 | |
| 488 | template <class _Mutex> |
| 489 | class _LIBCPP_TEMPLATE_VIS scoped_lock<_Mutex> { |
| 490 | public: |
| 491 | typedef _Mutex mutex_type; |
| 492 | private: |
| 493 | mutex_type& __m_; |
| 494 | public: |
| 495 | explicit scoped_lock(mutex_type & __m) _LIBCPP_THREAD_SAFETY_ANNOTATION(acquire_capability(__m)) |
| 496 | : __m_(__m) {__m_.lock();} |
| 497 | |
| 498 | ~scoped_lock() _LIBCPP_THREAD_SAFETY_ANNOTATION(release_capability()) {__m_.unlock();} |
| 499 | |
| 500 | _LIBCPP_INLINE_VISIBILITY |
| 501 | explicit scoped_lock(mutex_type& __m, adopt_lock_t) _LIBCPP_THREAD_SAFETY_ANNOTATION(requires_capability(__m)) |
| 502 | : __m_(__m) {} |
| 503 | |
| 504 | |
| 505 | scoped_lock(scoped_lock const&) = delete; |
| 506 | scoped_lock& operator=(scoped_lock const&) = delete; |
| 507 | }; |
| 508 | |
| 509 | template <class ..._MArgs> |
| 510 | class _LIBCPP_TEMPLATE_VIS scoped_lock |
| 511 | { |
| 512 | static_assert(sizeof...(_MArgs) > 1, "At least 2 lock types required"); |
| 513 | typedef tuple<_MArgs&...> _MutexTuple; |
| 514 | |
| 515 | public: |
| 516 | _LIBCPP_INLINE_VISIBILITY |
| 517 | explicit scoped_lock(_MArgs&... __margs) |
| 518 | : __t_(__margs...) |
| 519 | { |
| 520 | _VSTD::lock(__margs...); |
| 521 | } |
| 522 | |
| 523 | _LIBCPP_INLINE_VISIBILITY |
| 524 | scoped_lock(_MArgs&... __margs, adopt_lock_t) |
| 525 | : __t_(__margs...) |
| 526 | { |
| 527 | } |
| 528 | |
| 529 | _LIBCPP_INLINE_VISIBILITY |
| 530 | ~scoped_lock() { |
| 531 | typedef typename __make_tuple_indices<sizeof...(_MArgs)>::type _Indices; |
| 532 | __unlock_unpack(_Indices{}, __t_); |
| 533 | } |
| 534 | |
| 535 | scoped_lock(scoped_lock const&) = delete; |
| 536 | scoped_lock& operator=(scoped_lock const&) = delete; |
| 537 | |
| 538 | private: |
| 539 | template <size_t ..._Indx> |
| 540 | _LIBCPP_INLINE_VISIBILITY |
| 541 | static void __unlock_unpack(__tuple_indices<_Indx...>, _MutexTuple& __mt) { |
| 542 | _VSTD::__unlock(_VSTD::get<_Indx>(__mt)...); |
| 543 | } |
| 544 | |
| 545 | _MutexTuple __t_; |
| 546 | }; |
| 547 | |
| 548 | #endif // _LIBCPP_STD_VER > 14 |
Jonathan Roelofs | 8d86b2e | 2014-09-05 19:45:05 +0000 | [diff] [blame] | 549 | #endif // !_LIBCPP_HAS_NO_THREADS |
| 550 | |
Eric Fiselier | c3589a8 | 2017-01-04 23:56:00 +0000 | [diff] [blame] | 551 | struct _LIBCPP_TEMPLATE_VIS once_flag; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 552 | |
Eric Fiselier | 690d999 | 2017-04-18 23:05:08 +0000 | [diff] [blame] | 553 | #ifndef _LIBCPP_CXX03_LANG |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 554 | |
| 555 | template<class _Callable, class... _Args> |
Howard Hinnant | 33be35e | 2012-09-14 00:39:16 +0000 | [diff] [blame] | 556 | _LIBCPP_INLINE_VISIBILITY |
| 557 | void call_once(once_flag&, _Callable&&, _Args&&...); |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 558 | |
Eric Fiselier | 690d999 | 2017-04-18 23:05:08 +0000 | [diff] [blame] | 559 | #else // _LIBCPP_CXX03_LANG |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 560 | |
| 561 | template<class _Callable> |
Howard Hinnant | 33be35e | 2012-09-14 00:39:16 +0000 | [diff] [blame] | 562 | _LIBCPP_INLINE_VISIBILITY |
Eric Fiselier | bc1e44d | 2015-06-13 02:23:00 +0000 | [diff] [blame] | 563 | void call_once(once_flag&, _Callable&); |
| 564 | |
| 565 | template<class _Callable> |
| 566 | _LIBCPP_INLINE_VISIBILITY |
| 567 | void call_once(once_flag&, const _Callable&); |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 568 | |
Eric Fiselier | 690d999 | 2017-04-18 23:05:08 +0000 | [diff] [blame] | 569 | #endif // _LIBCPP_CXX03_LANG |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 570 | |
Eric Fiselier | c3589a8 | 2017-01-04 23:56:00 +0000 | [diff] [blame] | 571 | struct _LIBCPP_TEMPLATE_VIS once_flag |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 572 | { |
Howard Hinnant | b9af2ea | 2010-09-22 18:02:38 +0000 | [diff] [blame] | 573 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | 499c61f | 2012-07-21 16:13:09 +0000 | [diff] [blame] | 574 | _LIBCPP_CONSTEXPR |
| 575 | once_flag() _NOEXCEPT : __state_(0) {} |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 576 | |
| 577 | private: |
| 578 | once_flag(const once_flag&); // = delete; |
| 579 | once_flag& operator=(const once_flag&); // = delete; |
| 580 | |
| 581 | unsigned long __state_; |
| 582 | |
Eric Fiselier | 690d999 | 2017-04-18 23:05:08 +0000 | [diff] [blame] | 583 | #ifndef _LIBCPP_CXX03_LANG |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 584 | template<class _Callable, class... _Args> |
| 585 | friend |
| 586 | void call_once(once_flag&, _Callable&&, _Args&&...); |
Eric Fiselier | 690d999 | 2017-04-18 23:05:08 +0000 | [diff] [blame] | 587 | #else // _LIBCPP_CXX03_LANG |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 588 | template<class _Callable> |
| 589 | friend |
Eric Fiselier | bc1e44d | 2015-06-13 02:23:00 +0000 | [diff] [blame] | 590 | void call_once(once_flag&, _Callable&); |
| 591 | |
| 592 | template<class _Callable> |
| 593 | friend |
| 594 | void call_once(once_flag&, const _Callable&); |
Eric Fiselier | 690d999 | 2017-04-18 23:05:08 +0000 | [diff] [blame] | 595 | #endif // _LIBCPP_CXX03_LANG |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 596 | }; |
| 597 | |
Eric Fiselier | 690d999 | 2017-04-18 23:05:08 +0000 | [diff] [blame] | 598 | #ifndef _LIBCPP_CXX03_LANG |
Howard Hinnant | ad935d5 | 2011-05-16 19:05:11 +0000 | [diff] [blame] | 599 | |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 600 | template <class _Fp> |
Howard Hinnant | ad935d5 | 2011-05-16 19:05:11 +0000 | [diff] [blame] | 601 | class __call_once_param |
| 602 | { |
Eric Fiselier | bc1e44d | 2015-06-13 02:23:00 +0000 | [diff] [blame] | 603 | _Fp& __f_; |
Howard Hinnant | ad935d5 | 2011-05-16 19:05:11 +0000 | [diff] [blame] | 604 | public: |
Howard Hinnant | ad935d5 | 2011-05-16 19:05:11 +0000 | [diff] [blame] | 605 | _LIBCPP_INLINE_VISIBILITY |
Eric Fiselier | bc1e44d | 2015-06-13 02:23:00 +0000 | [diff] [blame] | 606 | explicit __call_once_param(_Fp& __f) : __f_(__f) {} |
Howard Hinnant | ad935d5 | 2011-05-16 19:05:11 +0000 | [diff] [blame] | 607 | |
| 608 | _LIBCPP_INLINE_VISIBILITY |
| 609 | void operator()() |
| 610 | { |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 611 | typedef typename __make_tuple_indices<tuple_size<_Fp>::value, 1>::type _Index; |
Howard Hinnant | ad935d5 | 2011-05-16 19:05:11 +0000 | [diff] [blame] | 612 | __execute(_Index()); |
| 613 | } |
| 614 | |
| 615 | private: |
| 616 | template <size_t ..._Indices> |
| 617 | _LIBCPP_INLINE_VISIBILITY |
| 618 | void __execute(__tuple_indices<_Indices...>) |
| 619 | { |
Eric Fiselier | bc1e44d | 2015-06-13 02:23:00 +0000 | [diff] [blame] | 620 | __invoke(_VSTD::get<0>(_VSTD::move(__f_)), _VSTD::get<_Indices>(_VSTD::move(__f_))...); |
Howard Hinnant | ad935d5 | 2011-05-16 19:05:11 +0000 | [diff] [blame] | 621 | } |
| 622 | }; |
| 623 | |
| 624 | #else |
| 625 | |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 626 | template <class _Fp> |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 627 | class __call_once_param |
| 628 | { |
Eric Fiselier | bc1e44d | 2015-06-13 02:23:00 +0000 | [diff] [blame] | 629 | _Fp& __f_; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 630 | public: |
Howard Hinnant | b9af2ea | 2010-09-22 18:02:38 +0000 | [diff] [blame] | 631 | _LIBCPP_INLINE_VISIBILITY |
Eric Fiselier | bc1e44d | 2015-06-13 02:23:00 +0000 | [diff] [blame] | 632 | explicit __call_once_param(_Fp& __f) : __f_(__f) {} |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 633 | |
Howard Hinnant | b9af2ea | 2010-09-22 18:02:38 +0000 | [diff] [blame] | 634 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 635 | void operator()() |
| 636 | { |
| 637 | __f_(); |
| 638 | } |
| 639 | }; |
| 640 | |
Howard Hinnant | ad935d5 | 2011-05-16 19:05:11 +0000 | [diff] [blame] | 641 | #endif |
| 642 | |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 643 | template <class _Fp> |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 644 | void |
| 645 | __call_once_proxy(void* __vp) |
| 646 | { |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 647 | __call_once_param<_Fp>* __p = static_cast<__call_once_param<_Fp>*>(__vp); |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 648 | (*__p)(); |
| 649 | } |
| 650 | |
Howard Hinnant | 0f678bd | 2013-08-12 18:38:34 +0000 | [diff] [blame] | 651 | _LIBCPP_FUNC_VIS void __call_once(volatile unsigned long&, void*, void(*)(void*)); |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 652 | |
Eric Fiselier | 690d999 | 2017-04-18 23:05:08 +0000 | [diff] [blame] | 653 | #ifndef _LIBCPP_CXX03_LANG |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 654 | |
| 655 | template<class _Callable, class... _Args> |
| 656 | inline _LIBCPP_INLINE_VISIBILITY |
| 657 | void |
| 658 | call_once(once_flag& __flag, _Callable&& __func, _Args&&... __args) |
| 659 | { |
Kuba Brecka | 4dbd4fc | 2016-09-04 09:55:12 +0000 | [diff] [blame] | 660 | if (__libcpp_acquire_load(&__flag.__state_) != ~0ul) |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 661 | { |
Eric Fiselier | bc1e44d | 2015-06-13 02:23:00 +0000 | [diff] [blame] | 662 | typedef tuple<_Callable&&, _Args&&...> _Gp; |
| 663 | _Gp __f(_VSTD::forward<_Callable>(__func), _VSTD::forward<_Args>(__args)...); |
| 664 | __call_once_param<_Gp> __p(__f); |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 665 | __call_once(__flag.__state_, &__p, &__call_once_proxy<_Gp>); |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 666 | } |
| 667 | } |
| 668 | |
Eric Fiselier | 690d999 | 2017-04-18 23:05:08 +0000 | [diff] [blame] | 669 | #else // _LIBCPP_CXX03_LANG |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 670 | |
| 671 | template<class _Callable> |
| 672 | inline _LIBCPP_INLINE_VISIBILITY |
| 673 | void |
Eric Fiselier | bc1e44d | 2015-06-13 02:23:00 +0000 | [diff] [blame] | 674 | call_once(once_flag& __flag, _Callable& __func) |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 675 | { |
Kuba Brecka | 4dbd4fc | 2016-09-04 09:55:12 +0000 | [diff] [blame] | 676 | if (__libcpp_acquire_load(&__flag.__state_) != ~0ul) |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 677 | { |
| 678 | __call_once_param<_Callable> __p(__func); |
| 679 | __call_once(__flag.__state_, &__p, &__call_once_proxy<_Callable>); |
| 680 | } |
| 681 | } |
| 682 | |
Eric Fiselier | bc1e44d | 2015-06-13 02:23:00 +0000 | [diff] [blame] | 683 | template<class _Callable> |
| 684 | inline _LIBCPP_INLINE_VISIBILITY |
| 685 | void |
| 686 | call_once(once_flag& __flag, const _Callable& __func) |
| 687 | { |
Justin Lebar | 57c4059 | 2017-04-23 16:58:48 +0000 | [diff] [blame^] | 688 | if (__libcpp_acquire_load(&__flag.__state_) != ~0ul) |
Eric Fiselier | bc1e44d | 2015-06-13 02:23:00 +0000 | [diff] [blame] | 689 | { |
| 690 | __call_once_param<const _Callable> __p(__func); |
| 691 | __call_once(__flag.__state_, &__p, &__call_once_proxy<const _Callable>); |
| 692 | } |
| 693 | } |
| 694 | |
Eric Fiselier | 690d999 | 2017-04-18 23:05:08 +0000 | [diff] [blame] | 695 | #endif // _LIBCPP_CXX03_LANG |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 696 | |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 697 | _LIBCPP_END_NAMESPACE_STD |
| 698 | |
| 699 | #endif // _LIBCPP_MUTEX |