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(0);
28
29 s.release();
30 s.acquire();
31
32 std::thread t = support::make_test_thread([&](){
33 s.acquire();
34 });
35 s.release(2);
36 t.join();
37 s.acquire();
38
39 return 0;
40}
41

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