Commit 4c26471a authored by Piotr Caban's avatar Piotr Caban Committed by Alexandre Julliard

msvcp140_atomic_wait: Add __std_atomic_notify_all_direct implementation.

parent 32a369d6
......@@ -68,3 +68,9 @@ void __stdcall __std_atomic_notify_one_direct(void *addr)
TRACE("(%p)\n", addr);
WakeByAddressSingle(addr);
}
void __stdcall __std_atomic_notify_all_direct(void *addr)
{
TRACE("(%p)\n", addr);
WakeByAddressAll(addr);
}
......@@ -2,7 +2,7 @@
@ stub __std_atomic_compare_exchange_128
@ stub __std_atomic_get_mutex
@ stub __std_atomic_has_cmpxchg16b
@ stub __std_atomic_notify_all_direct
@ stdcall __std_atomic_notify_all_direct(ptr)
@ stub __std_atomic_notify_all_indirect
@ stdcall __std_atomic_notify_one_direct(ptr)
@ stub __std_atomic_notify_one_indirect
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment