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 |
11 | |
12 | // Until we drop support for the synchronization library in C++11/14/17 |
13 | // ADDITIONAL_COMPILE_FLAGS: -D_LIBCPP_DISABLE_DEPRECATION_WARNINGS |
14 | |
15 | // XFAIL: availability-synchronization_library-missing |
16 | |
17 | // <barrier> |
18 | |
19 | #include <barrier> |
20 | #include <thread> |
21 | #include <cassert> |
22 | |
23 | #include "make_test_thread.h" |
24 | #include "test_macros.h" |
25 | |
26 | int main(int, char**) |
27 | { |
28 | int x = 0; |
29 | auto comp = [&]() noexcept { x += 1; }; |
30 | std::barrier<decltype(comp)> b(2, comp); |
31 | |
32 | std::thread t = support::make_test_thread([&](){ |
33 | for(int i = 0; i < 10; ++i) |
34 | b.arrive_and_wait(); |
35 | }); |
36 | |
37 | for(int i = 0; i < 10; ++i) |
38 | b.arrive_and_wait(); |
39 | |
40 | assert(x == 10); |
41 | t.join(); |
42 | return 0; |
43 | } |
44 | |