Fix wrong function name

Should be 'ThreadInterlockedCompareExchange'.
This commit is contained in:
Kawe Mazidjatari 2023-02-01 21:41:16 +01:00
parent 3ea7cc1cd4
commit b0880f8f0e
2 changed files with 2 additions and 2 deletions

View File

@ -9,7 +9,7 @@
#include "core/stdafx.h"
#include "threadtools.h"
LONG ThreadInterlockedCompareExchange64(LONG volatile* pDest, int64 value, int64 comperand)
int32 ThreadInterlockedCompareExchange(LONG volatile* pDest, int32 value, int32 comperand)
{
return _InterlockedCompareExchange(pDest, comperand, value);
}

View File

@ -65,7 +65,7 @@ ThreadId_t ThreadGetCurrentId();
//
//-----------------------------------------------------------------------------
LONG ThreadInterlockedCompareExchange64(LONG volatile* pDest, int64 value, int64 comperand);
int32 ThreadInterlockedCompareExchange(LONG volatile* pDest, int32 value, int32 comperand);
bool ThreadInterlockedAssignIf(LONG volatile* p, int32 value, int32 comperand);
int64 ThreadInterlockedCompareExchange64(int64 volatile* pDest, int64 value, int64 comperand);
bool ThreadInterlockedAssignIf64(int64 volatile* pDest, int64 value, int64 comperand);