blob: 057dbc4cd3b7acbbd800d856cfb16f64b7da67f3 [file] [log] [blame]
Howard Hinnantba898e42013-09-21 01:49:28 +00001//===----------------------------------------------------------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is dual licensed under the MIT and the University of Illinois Open
6// Source Licenses. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
Jonathan Roelofs8d86b2e2014-09-05 19:45:05 +00009//
10// UNSUPPORTED: libcpp-has-no-threads
Howard Hinnantba898e42013-09-21 01:49:28 +000011
12// <shared_mutex>
13
14// template <class Mutex> class shared_lock;
15
16// template <class Mutex>
17// void swap(shared_lock<Mutex>& x, shared_lock<Mutex>& y) noexcept;
18
19#include <shared_mutex>
20#include <cassert>
21
Dan Albert1d4a1ed2016-05-25 22:36:09 -070022#if _LIBCPP_STD_VER > 11
23
Howard Hinnantba898e42013-09-21 01:49:28 +000024struct mutex
25{
26 void lock_shared() {}
27 void unlock_shared() {}
28};
29
30mutex m;
31
Dan Albert1d4a1ed2016-05-25 22:36:09 -070032#endif // _LIBCPP_STD_VER > 11
33
Howard Hinnantba898e42013-09-21 01:49:28 +000034int main()
35{
Dan Albert1d4a1ed2016-05-25 22:36:09 -070036#if _LIBCPP_STD_VER > 11
Howard Hinnantba898e42013-09-21 01:49:28 +000037 std::shared_lock<mutex> lk1(m);
38 std::shared_lock<mutex> lk2;
39 swap(lk1, lk2);
40 assert(lk1.mutex() == nullptr);
41 assert(lk1.owns_lock() == false);
42 assert(lk2.mutex() == &m);
43 assert(lk2.owns_lock() == true);
44 static_assert(noexcept(swap(lk1, lk2)), "non-member swap must be noexcept");
Dan Albert1d4a1ed2016-05-25 22:36:09 -070045#endif // _LIBCPP_STD_VER > 11
Howard Hinnantba898e42013-09-21 01:49:28 +000046}