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: libcpp-has-no-threads
10 // ALLOW_RETRIES: 2
11 
12 // <mutex>
13 
14 // class recursive_timed_mutex;
15 
16 // bool try_lock();
17 
18 #include <mutex>
19 #include <thread>
20 #include <cstdlib>
21 #include <cassert>
22 
23 #include "test_macros.h"
24 
25 std::recursive_timed_mutex m;
26 
27 typedef std::chrono::system_clock Clock;
28 typedef Clock::time_point time_point;
29 typedef Clock::duration duration;
30 typedef std::chrono::milliseconds ms;
31 typedef std::chrono::nanoseconds ns;
32 
33 void f()
34 {
35     time_point t0 = Clock::now();
36     assert(!m.try_lock());
37     assert(!m.try_lock());
38     assert(!m.try_lock());
39     while(!m.try_lock())
40         ;
41     time_point t1 = Clock::now();
42     assert(m.try_lock());
43     m.unlock();
44     m.unlock();
45     ns d = t1 - t0 - ms(250);
46     assert(d < ms(200));  // within 200ms
47 }
48 
49 int main(int, char**)
50 {
51     m.lock();
52     std::thread t(f);
53     std::this_thread::sleep_for(ms(250));
54     m.unlock();
55     t.join();
56 
57   return 0;
58 }
59