blob: 9bf7a79e34008a20d254151db3801f9ba91bbb9f [file] [log] [blame]
Marshall Clowabadb452015-06-30 14:04:14 +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//===----------------------------------------------------------------------===//
9//
10// UNSUPPORTED: libcpp-has-no-threads
11// UNSUPPORTED: c++03, c++98, c++11, c++14
12
13// <shared_mutex>
14
15// class shared_mutex;
16
17// void lock();
18
19#include <shared_mutex>
20#include <thread>
21#include <cstdlib>
22#include <cassert>
23
24
25std::shared_mutex m;
26
27typedef std::chrono::system_clock Clock;
28typedef Clock::time_point time_point;
29typedef Clock::duration duration;
30typedef std::chrono::milliseconds ms;
31typedef std::chrono::nanoseconds ns;
32
33void f()
34{
35 time_point t0 = Clock::now();
36 m.lock();
37 time_point t1 = Clock::now();
38 m.unlock();
Dan Albert1d4a1ed2016-05-25 22:36:09 -070039 ns d = t1 - t0 - ms(250);
40 assert(d < ms(50)); // within 50ms
Marshall Clowabadb452015-06-30 14:04:14 +000041}
42
43int main()
44{
45 m.lock();
46 std::thread t(f);
Dan Albert1d4a1ed2016-05-25 22:36:09 -070047 std::this_thread::sleep_for(ms(250));
Marshall Clowabadb452015-06-30 14:04:14 +000048 m.unlock();
49 t.join();
50}