blob: f1500652badd48831e5e61a4539107cd423b6ef4 [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 lock();
17
18#include <shared_mutex>
19#include <thread>
20#include <vector>
21#include <cstdlib>
22#include <cassert>
23
Dan Albert1d4a1ed2016-05-25 22:36:09 -070024#if _LIBCPP_STD_VER > 11
Howard Hinnantba898e42013-09-21 01:49:28 +000025
David Majnemerf9f95be2014-03-17 20:19:44 +000026std::shared_timed_mutex m;
Howard Hinnantba898e42013-09-21 01:49:28 +000027
28typedef std::chrono::system_clock Clock;
29typedef Clock::time_point time_point;
30typedef Clock::duration duration;
31typedef std::chrono::milliseconds ms;
32typedef std::chrono::nanoseconds ns;
33
34void f()
35{
David Majnemerf9f95be2014-03-17 20:19:44 +000036 std::shared_lock<std::shared_timed_mutex> lk(m, std::defer_lock);
Howard Hinnantba898e42013-09-21 01:49:28 +000037 time_point t0 = Clock::now();
38 lk.lock();
39 time_point t1 = Clock::now();
40 assert(lk.owns_lock() == true);
Dan Albert1d4a1ed2016-05-25 22:36:09 -070041 ns d = t1 - t0 - ms(250);
42 assert(d < ms(25)); // within 25ms
Howard Hinnantba898e42013-09-21 01:49:28 +000043 try
44 {
45 lk.lock();
46 assert(false);
47 }
48 catch (std::system_error& e)
49 {
50 assert(e.code().value() == EDEADLK);
51 }
52 lk.unlock();
53 lk.release();
54 try
55 {
56 lk.lock();
57 assert(false);
58 }
59 catch (std::system_error& e)
60 {
61 assert(e.code().value() == EPERM);
62 }
63}
64
Dan Albert1d4a1ed2016-05-25 22:36:09 -070065#endif // _LIBCPP_STD_VER > 11
66
Howard Hinnantba898e42013-09-21 01:49:28 +000067int main()
68{
Dan Albert1d4a1ed2016-05-25 22:36:09 -070069#if _LIBCPP_STD_VER > 11
Howard Hinnantba898e42013-09-21 01:49:28 +000070 m.lock();
71 std::vector<std::thread> v;
72 for (int i = 0; i < 5; ++i)
73 v.push_back(std::thread(f));
Dan Albert1d4a1ed2016-05-25 22:36:09 -070074 std::this_thread::sleep_for(ms(250));
Howard Hinnantba898e42013-09-21 01:49:28 +000075 m.unlock();
76 for (auto& t : v)
77 t.join();
Dan Albert1d4a1ed2016-05-25 22:36:09 -070078#endif // _LIBCPP_STD_VER > 11
Howard Hinnantba898e42013-09-21 01:49:28 +000079}