Commit 55177136 authored by Martin Storsjö's avatar Martin Storsjö Committed by Alexandre Julliard

include: Add a declaration of _InterlockedExchangeAdd64 for MSVC mode for aarch64.

This matches the corresponding declaration for x86_64. Signed-off-by: 's avatarMartin Storsjö <martin@martin.st> Signed-off-by: 's avatarAlexandre Julliard <julliard@winehq.org>
parent d0833a0e
......@@ -6371,6 +6371,10 @@ static FORCEINLINE void MemoryBarrier(void)
#elif defined(__aarch64__)
#pragma intrinsic(_InterlockedExchangeAdd64)
long long _InterlockedExchangeAdd64(long long volatile *, long long);
static FORCEINLINE void MemoryBarrier(void)
{
__dmb(_ARM64_BARRIER_SY);
......
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