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 // template <class Mutex> class unique_lock;
15 
16 // explicit unique_lock(mutex_type& m);
17 
18 // template<class _Mutex> unique_lock(unique_lock<_Mutex>)
19 //     -> unique_lock<_Mutex>;  // C++17
20 
21 #include <mutex>
22 #include <thread>
23 #include <cstdlib>
24 #include <cassert>
25 
26 #include "make_test_thread.h"
27 #include "test_macros.h"
28 
29 std::mutex m;
30 
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;
36 
f()37 void f()
38 {
39     time_point t0 = Clock::now();
40     time_point t1;
41     {
42     std::unique_lock<std::mutex> ul(m);
43     t1 = Clock::now();
44     }
45     ns d = t1 - t0 - ms(250);
46     assert(d < ms(50));  // within 50ms
47 }
48 
main(int,char **)49 int main(int, char**)
50 {
51     m.lock();
52     std::thread t = support::make_test_thread(f);
53     std::this_thread::sleep_for(ms(250));
54     m.unlock();
55     t.join();
56 
57 #if TEST_STD_VER >= 17
58     std::unique_lock ul(m);
59     static_assert((std::is_same<decltype(ul), std::unique_lock<decltype(m)>>::value), "" );
60 #endif
61 
62   return 0;
63 }
64