mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 17:34:57 +00:00
Fix some interlock routine definitions on platforms that use it (not x86)
svn path=/trunk/; revision=41925
This commit is contained in:
parent
6a31fba13b
commit
0a25cb7cf3
1 changed files with 3 additions and 2 deletions
|
@ -19,6 +19,7 @@
|
|||
#undef ExInterlockedAddULong
|
||||
#undef ExInterlockedIncrementLong
|
||||
#undef ExInterlockedDecrementLong
|
||||
#undef ExInterlockedAddLargeStatistic
|
||||
|
||||
/* FUNCTIONS ******************************************************************/
|
||||
|
||||
|
@ -288,7 +289,7 @@ ExInterlockedRemoveHeadList(IN PLIST_ENTRY ListHead,
|
|||
|
||||
VOID
|
||||
FASTCALL
|
||||
ExInterlockedAddLargeStatistic(IN PLARGE_INTEGER Addend,
|
||||
ExInterlockedAddLargeStatistic(IN PLONGLONG Addend,
|
||||
IN ULONG Increment)
|
||||
{
|
||||
UNIMPLEMENTED;
|
||||
|
@ -296,7 +297,7 @@ ExInterlockedAddLargeStatistic(IN PLARGE_INTEGER Addend,
|
|||
|
||||
LONGLONG
|
||||
FASTCALL
|
||||
ExInterlockedCompareExchange64(IN OUT PLONGLONG Destination,
|
||||
ExInterlockedCompareExchange64(IN OUT LONGLONG volatile *Destination,
|
||||
IN PLONGLONG Exchange,
|
||||
IN PLONGLONG Comparand,
|
||||
IN PKSPIN_LOCK Lock)
|
||||
|
|
Loading…
Reference in a new issue