mirror of
https://github.com/reactos/reactos.git
synced 2025-08-04 23:35:45 +00:00
Create a branch for header work.
svn path=/branches/header-work/; revision=45691
This commit is contained in:
parent
14fe274b1c
commit
9ea495ba33
19538 changed files with 0 additions and 1063950 deletions
37
lib/rtl/interlck.c
Normal file
37
lib/rtl/interlck.c
Normal file
|
@ -0,0 +1,37 @@
|
|||
/*
|
||||
* COPYRIGHT: See COPYING in the top level directory
|
||||
* PROJECT: ReactOS Runtime Library
|
||||
* PURPOSE: RTL Interlocked Routines
|
||||
* FILE: lib/rtl/interlck.c
|
||||
* PROGRAMERS: Stefan Ginsberg (stefan__100__@hotmail.com)
|
||||
*/
|
||||
|
||||
/* INCLUDES *****************************************************************/
|
||||
|
||||
#include <rtl.h>
|
||||
|
||||
#define NDEBUG
|
||||
#include <debug.h>
|
||||
|
||||
/* FUNCTIONS ***************************************************************/
|
||||
|
||||
PSLIST_ENTRY
|
||||
NTAPI
|
||||
RtlInterlockedPushListSList(IN PSLIST_HEADER ListHead,
|
||||
IN PSLIST_ENTRY List,
|
||||
IN PSLIST_ENTRY ListEnd,
|
||||
IN ULONG Count)
|
||||
{
|
||||
UNIMPLEMENTED;
|
||||
return NULL;
|
||||
}
|
||||
|
||||
LONGLONG
|
||||
NTAPI
|
||||
RtlInterlockedCompareExchange64(LONGLONG volatile *Destination,
|
||||
LONGLONG Exchange,
|
||||
LONGLONG Comparand)
|
||||
{
|
||||
/* Just call the intrinsic */
|
||||
return _InterlockedCompareExchange64(Destination, Exchange, Comparand);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue