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 // TODO(ldionne): This test fails on Ubuntu Focal on our CI nodes (and only there), in 32 bit mode. 13 // UNSUPPORTED: linux && 32bits-on-64bits 14 15 // <mutex> 16 17 // class recursive_mutex; 18 19 // bool try_lock(); 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::recursive_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 37 void f() 38 { 39 time_point t0 = Clock::now(); 40 assert(!m.try_lock()); 41 assert(!m.try_lock()); 42 assert(!m.try_lock()); 43 while(!m.try_lock()) 44 ; 45 time_point t1 = Clock::now(); 46 assert(m.try_lock()); 47 m.unlock(); 48 m.unlock(); 49 ns d = t1 - t0 - ms(250); 50 assert(d < ms(200)); // within 200ms 51 } 52 53 int main(int, char**) 54 { 55 m.lock(); 56 std::thread t = support::make_test_thread(f); 57 std::this_thread::sleep_for(ms(250)); 58 m.unlock(); 59 t.join(); 60 61 return 0; 62 } 63