1 //===----------------------------------------------------------------------===//
2 //
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
6 //
7 //===----------------------------------------------------------------------===//
8 
9 // UNSUPPORTED: no-threads
10 // ALLOW_RETRIES: 2
11 
12 // <mutex>
13 
14 // class recursive_timed_mutex;
15 
16 // template <class Clock, class Duration>
17 //     bool try_lock_until(const chrono::time_point<Clock, Duration>& abs_time);
18 
19 #include <mutex>
20 #include <thread>
21 #include <cstdlib>
22 #include <cassert>
23 
24 #include "make_test_thread.h"
25 #include "test_macros.h"
26 
27 std::recursive_timed_mutex m;
28 
29 typedef std::chrono::steady_clock Clock;
30 typedef Clock::time_point time_point;
31 typedef Clock::duration duration;
32 typedef std::chrono::milliseconds ms;
33 typedef std::chrono::nanoseconds ns;
34 
f1()35 void f1()
36 {
37     time_point t0 = Clock::now();
38     assert(m.try_lock_until(Clock::now() + ms(300)) == true);
39     time_point t1 = Clock::now();
40     assert(m.try_lock());
41     m.unlock();
42     m.unlock();
43     ns d = t1 - t0 - ms(250);
44     assert(d < ms(50));  // within 50ms
45 }
46 
f2()47 void f2()
48 {
49     time_point t0 = Clock::now();
50     assert(m.try_lock_until(Clock::now() + ms(250)) == false);
51     time_point t1 = Clock::now();
52     ns d = t1 - t0 - ms(250);
53     assert(d < ms(50));  // within 50ms
54 }
55 
main(int,char **)56 int main(int, char**)
57 {
58     {
59         m.lock();
60         std::thread t = support::make_test_thread(f1);
61         std::this_thread::sleep_for(ms(250));
62         m.unlock();
63         t.join();
64     }
65     {
66         m.lock();
67         std::thread t = support::make_test_thread(f2);
68         std::this_thread::sleep_for(ms(300));
69         m.unlock();
70         t.join();
71     }
72 
73   return 0;
74 }
75