Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / libcxx / test / std / thread / thread.mutex / thread.mutex.requirements / thread.sharedtimedmutex.requirements / thread.sharedtimedmutex.class / try_lock.pass.cpp
blob52d7e2245847d9c29a21f1410cc0a8b740f3765b
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 // UNSUPPORTED: c++03, c++11
12 // ALLOW_RETRIES: 2
14 // UNSUPPORTED: availability-shared_mutex-missing
16 // <shared_mutex>
18 // class shared_timed_mutex;
20 // bool try_lock();
22 #include <cassert>
23 #include <chrono>
24 #include <cstdlib>
25 #include <shared_mutex>
26 #include <thread>
28 #include "make_test_thread.h"
29 #include "test_macros.h"
31 std::shared_timed_mutex m;
33 typedef std::chrono::system_clock Clock;
34 typedef Clock::time_point time_point;
35 typedef Clock::duration duration;
36 typedef std::chrono::milliseconds ms;
37 typedef std::chrono::nanoseconds ns;
39 void f()
41 time_point t0 = Clock::now();
42 assert(!m.try_lock());
43 assert(!m.try_lock());
44 assert(!m.try_lock());
45 while(!m.try_lock())
47 time_point t1 = Clock::now();
48 m.unlock();
49 ns d = t1 - t0 - ms(250);
50 assert(d < ms(200)); // within 200ms
53 int main(int, char**)
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();
61 return 0;