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
26int main(int, char**)
27{
28 std::barrier<> b(2);
29
30 std::thread t = support::make_test_thread([&](){
31 b.arrive_and_drop();
32 });
33
34 b.arrive_and_wait();
35 b.arrive_and_wait();
36 t.join();
37 return 0;
38}
39

source code of libcxx/test/std/thread/thread.barrier/arrive_and_drop.pass.cpp