blob: 65ddca62472588744795fd64e22e9ad78562a5db [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// mutex_type* release() 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 static int lock_count;
26 static int unlock_count;
27 void lock_shared() {++lock_count;}
28 void unlock_shared() {++unlock_count;}
29};
30
31int mutex::lock_count = 0;
32int mutex::unlock_count = 0;
33
34mutex m;
35
Dan Albert1d4a1ed2016-05-25 22:36:09 -070036#endif // _LIBCPP_STD_VER > 11
37
Howard Hinnantba898e42013-09-21 01:49:28 +000038int main()
39{
Dan Albert1d4a1ed2016-05-25 22:36:09 -070040#if _LIBCPP_STD_VER > 11
Howard Hinnantba898e42013-09-21 01:49:28 +000041 std::shared_lock<mutex> lk(m);
42 assert(lk.mutex() == &m);
43 assert(lk.owns_lock() == true);
44 assert(mutex::lock_count == 1);
45 assert(mutex::unlock_count == 0);
46 assert(lk.release() == &m);
47 assert(lk.mutex() == nullptr);
48 assert(lk.owns_lock() == false);
49 assert(mutex::lock_count == 1);
50 assert(mutex::unlock_count == 0);
51 static_assert(noexcept(lk.release()), "release must be noexcept");
Dan Albert1d4a1ed2016-05-25 22:36:09 -070052#endif // _LIBCPP_STD_VER > 11
Howard Hinnantba898e42013-09-21 01:49:28 +000053}