1 //===----------------------------------------------------------------------===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
9 // UNSUPPORTED: no-threads
10 // UNSUPPORTED: c++03, c++11
16 // class shared_timed_mutex;
23 #include <shared_mutex>
26 #include "make_test_thread.h"
27 #include "test_macros.h"
29 std::shared_timed_mutex m
;
31 typedef std::chrono::system_clock Clock
;
32 typedef Clock::time_point time_point
;
33 typedef Clock::duration duration
;
34 typedef std::chrono::milliseconds ms
;
35 typedef std::chrono::nanoseconds ns
;
39 time_point t0
= Clock::now();
40 assert(!m
.try_lock());
41 assert(!m
.try_lock());
42 assert(!m
.try_lock());
45 time_point t1
= Clock::now();
47 ns d
= t1
- t0
- ms(250);
48 assert(d
< ms(200)); // within 200ms
54 std::thread t
= support::make_test_thread(f
);
55 std::this_thread::sleep_for(ms(250));