Commit 32a369d6 authored by Piotr Caban's avatar Piotr Caban Committed by Alexandre Julliard

msvcp140_atomic_wait: Add __std_atomic_notify_one_direct implementation.

parent 2b4b10be
MODULE = msvcp140_atomic_wait.dll
IMPORTS = msvcp140
IMPORTS = kernelbase msvcp140
C_SRCS = \
main.c
......@@ -62,3 +62,9 @@ void __stdcall __std_wait_for_threadpool_work_callbacks(PTP_WORK work, BOOL canc
TRACE("(%p %d)\n", work, cancel);
return WaitForThreadpoolWorkCallbacks(work, cancel);
}
void __stdcall __std_atomic_notify_one_direct(void *addr)
{
TRACE("(%p)\n", addr);
WakeByAddressSingle(addr);
}
......@@ -4,7 +4,7 @@
@ stub __std_atomic_has_cmpxchg16b
@ stub __std_atomic_notify_all_direct
@ stub __std_atomic_notify_all_indirect
@ stub __std_atomic_notify_one_direct
@ stdcall __std_atomic_notify_one_direct(ptr)
@ stub __std_atomic_notify_one_indirect
@ stub __std_atomic_set_api_level
@ stub __std_atomic_wait_direct
......
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