blob: fbf89529ac332ffe8798ce8baf64e32c7bd60acd [file] [log] [blame]
//===----------------------------------------------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
//
// UNSUPPORTED: no-threads
// XFAIL: c++03
// XFAIL: !non-lockfree-atomics
// XFAIL: availability-synchronization_library-missing
// <atomic>
// template<class T>
// void
// atomic_notify_one(volatile atomic<T>*) noexcept;
//
// template<class T>
// void
// atomic_notify_one(atomic<T>*) noexcept;
#include <atomic>
#include <type_traits>
#include <cassert>
#include <thread>
#include "make_test_thread.h"
#include "test_macros.h"
#include "atomic_helpers.h"
template <class T>
struct TestFn {
void operator()() const {
typedef std::atomic<T> A;
{
A a(T(1));
static_assert(noexcept(std::atomic_notify_one(&a)), "");
std::thread t = support::make_test_thread([&]() {
std::atomic_store(&a, T(3));
std::atomic_notify_one(&a);
});
std::atomic_wait(&a, T(1));
assert(std::atomic_load(&a) == T(3));
t.join();
}
{
volatile A a(T(2));
static_assert(noexcept(std::atomic_notify_one(&a)), "");
std::thread t = support::make_test_thread([&]() {
std::atomic_store(&a, T(4));
std::atomic_notify_one(&a);
});
std::atomic_wait(&a, T(2));
assert(std::atomic_load(&a) == T(4));
t.join();
}
}
};
int main(int, char**) {
TestEachAtomicType<TestFn>()();
return 0;
}