@@ -1870,7 +1870,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
#if __cpp_lib_atomic_wait
_GLIBCXX_ALWAYS_INLINE void
- wait(_Tp __old, memory_order __m = memory_order_seq_cst) const noexcept
+ wait(_Tp* __old, memory_order __m = memory_order_seq_cst) const noexcept
{ __atomic_impl::wait(_M_ptr, __old, __m); }
// TODO add const volatile overload
@@ -26,22 +26,34 @@
#include <testsuite_hooks.h>
+template<typename S>
+ void
+ test (S va, S vb)
+ {
+ S aa{ va };
+ S bb{ vb };
+ std::atomic_ref<S> a{ aa };
+ a.wait(bb);
+ std::thread t([&]
+ {
+ a.store(bb);
+ a.notify_one();
+ });
+ a.wait(aa);
+ t.join();
+ }
+
int
main ()
{
+ test<int>(0, 42);
+ test<long>(0, 42);
+ test<unsigned>(0u, 42u);
+ test<float>(0.0f, 42.0f);
+ test<double>(0.0, 42.0);
+ test<void*>(nullptr, reinterpret_cast<void*>(42));
+
struct S{ int i; };
- S aa{ 0 };
- S bb{ 42 };
-
- std::atomic_ref<S> a{ aa };
- VERIFY( a.load().i == aa.i );
- a.wait(bb);
- std::thread t([&]
- {
- a.store(bb);
- a.notify_one();
- });
- a.wait(aa);
- t.join();
+ test<S>(S{ 0 }, S{ 42 });
return 0;
}