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 timed_mutex; 15 16 // template <class Rep, class Period> 17 // bool try_lock_for(const chrono::duration<Rep, Period>& rel_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::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()35void f1() 36 { 37 time_point t0 = Clock::now(); 38 assert(m.try_lock_for(ms(300)) == true); 39 time_point t1 = Clock::now(); 40 m.unlock(); 41 ns d = t1 - t0 - ms(250); 42 assert(d < ms(50)); // within 50ms 43 } 44 f2()45void f2() 46 { 47 time_point t0 = Clock::now(); 48 assert(m.try_lock_for(ms(250)) == false); 49 time_point t1 = Clock::now(); 50 ns d = t1 - t0 - ms(250); 51 assert(d < ms(50)); // within 50ms 52 } 53 main(int,char **)54int main(int, char**) 55 { 56 { 57 m.lock(); 58 std::thread t = support::make_test_thread(f1); 59 std::this_thread::sleep_for(ms(250)); 60 m.unlock(); 61 t.join(); 62 } 63 { 64 m.lock(); 65 std::thread t = support::make_test_thread(f2); 66 std::this_thread::sleep_for(ms(300)); 67 m.unlock(); 68 t.join(); 69 } 70 71 return 0; 72 } 73