blob: 8505763e44bc09c44bd362c7c84ab36e436e48c4 [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// void swap(shared_lock& u) noexcept;
17
18#include <shared_mutex>
19#include <cassert>
20
Dan Albert1d4a1ed2016-05-25 22:36:09 -070021#if _LIBCPP_STD_VER > 11
22
Howard Hinnantba898e42013-09-21 01:49:28 +000023struct mutex
24{
25 void lock_shared() {}
26 void unlock_shared() {}
27};
28
29mutex m;
30
Dan Albert1d4a1ed2016-05-25 22:36:09 -070031#endif // _LIBCPP_STD_VER > 11
32
Howard Hinnantba898e42013-09-21 01:49:28 +000033int main()
34{
Dan Albert1d4a1ed2016-05-25 22:36:09 -070035#if _LIBCPP_STD_VER > 11
Howard Hinnantba898e42013-09-21 01:49:28 +000036 std::shared_lock<mutex> lk1(m);
37 std::shared_lock<mutex> lk2;
38 lk1.swap(lk2);
39 assert(lk1.mutex() == nullptr);
40 assert(lk1.owns_lock() == false);
41 assert(lk2.mutex() == &m);
42 assert(lk2.owns_lock() == true);
43 static_assert(noexcept(lk1.swap(lk2)), "member swap must be noexcept");
Dan Albert1d4a1ed2016-05-25 22:36:09 -070044#endif // _LIBCPP_STD_VER > 11
Howard Hinnantba898e42013-09-21 01:49:28 +000045}