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// <semaphore>
18
19#include <semaphore>
20#include <thread>
21
22#include "make_test_thread.h"
23#include "test_macros.h"
24
25int main(int, char**)
26{
27 std::counting_semaphore<> s(2);
28
29 std::thread t = support::make_test_thread([&](){
30 s.acquire();
31 });
32 t.join();
33
34 s.acquire();
35
36 return 0;
37}
38

source code of libcxx/test/std/thread/thread.semaphore/acquire.pass.cpp