ReactOS
0.4.16-dev-340-g0540c21
interlck.c
Go to the documentation of this file.
1
/*
2
* COPYRIGHT: See COPYING in the top level directory
3
* PROJECT: ReactOS Runtime Library
4
* PURPOSE: RTL Interlocked Routines
5
* FILE: lib/rtl/interlck.c
6
* PROGRAMERS: Stefan Ginsberg (stefan.ginsberg@reactos.org)
7
*/
8
9
/* INCLUDES *****************************************************************/
10
11
#include <
rtl.h
>
12
13
#define NDEBUG
14
#include <debug.h>
15
16
/* FUNCTIONS ***************************************************************/
17
18
LONGLONG
19
NTAPI
20
RtlInterlockedCompareExchange64
(
LONGLONG
volatile
*
Destination
,
21
LONGLONG
Exchange,
22
LONGLONG
Comparand)
23
{
24
/* Just call the intrinsic */
25
return
_InterlockedCompareExchange64
(
Destination
, Exchange, Comparand);
26
}
_InterlockedCompareExchange64
__int64 _InterlockedCompareExchange64(_Interlocked_operand_ __int64 volatile *_Destination, __int64 _Exchange, __int64 _Comparand)
Destination
_In_ PUNICODE_STRING _Inout_ PUNICODE_STRING Destination
Definition:
rtlfuncs.h:3016
RtlInterlockedCompareExchange64
LONGLONG NTAPI RtlInterlockedCompareExchange64(LONGLONG volatile *Destination, LONGLONG Exchange, LONGLONG Comparand)
Definition:
interlck.c:20
rtl.h
LONGLONG
int64_t LONGLONG
Definition:
typedefs.h:68
NTAPI
#define NTAPI
Definition:
typedefs.h:36
sdk
lib
rtl
interlck.c
Generated on Sat Dec 14 2024 06:13:54 for ReactOS by
1.9.6