mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 01:24:38 +00:00
- Fix calling convention of ExInterlockedPushEntrySList and ExInterlockedPopEntrySList.
svn path=/trunk/; revision=11322
This commit is contained in:
parent
9af4f499f3
commit
dbcfba9bdb
3 changed files with 8 additions and 8 deletions
|
@ -467,7 +467,7 @@ ExInterlockedPopEntryList (
|
|||
PKSPIN_LOCK Lock
|
||||
);
|
||||
PSINGLE_LIST_ENTRY
|
||||
STDCALL
|
||||
FASTCALL
|
||||
ExInterlockedPopEntrySList (
|
||||
PSLIST_HEADER ListHead,
|
||||
PKSPIN_LOCK Lock
|
||||
|
@ -480,7 +480,7 @@ ExInterlockedPushEntryList (
|
|||
PKSPIN_LOCK Lock
|
||||
);
|
||||
PSINGLE_LIST_ENTRY
|
||||
STDCALL
|
||||
FASTCALL
|
||||
ExInterlockedPushEntrySList (
|
||||
PSLIST_HEADER ListHead,
|
||||
PSINGLE_LIST_ENTRY ListEntry,
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $Id: list.c,v 1.15 2004/10/17 13:08:26 navaraf Exp $
|
||||
/* $Id: list.c,v 1.16 2004/10/18 20:56:22 navaraf Exp $
|
||||
*
|
||||
* COPYRIGHT: See COPYING in the top level directory
|
||||
* PROJECT: ReactOS kernel
|
||||
|
@ -177,7 +177,7 @@ ExInterlockedRemoveTailList(PLIST_ENTRY Head,
|
|||
* @implemented
|
||||
*/
|
||||
PSINGLE_LIST_ENTRY
|
||||
STDCALL
|
||||
FASTCALL
|
||||
ExInterlockedPopEntrySList(IN PSLIST_HEADER ListHead,
|
||||
IN PKSPIN_LOCK Lock)
|
||||
/*
|
||||
|
@ -209,7 +209,7 @@ ExInterlockedPopEntrySList(IN PSLIST_HEADER ListHead,
|
|||
* @implemented
|
||||
*/
|
||||
PSINGLE_LIST_ENTRY
|
||||
STDCALL
|
||||
FASTCALL
|
||||
ExInterlockedPushEntrySList(IN PSLIST_HEADER ListHead,
|
||||
IN PSINGLE_LIST_ENTRY ListEntry,
|
||||
IN PKSPIN_LOCK Lock)
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
; $Id: ntoskrnl.def,v 1.195 2004/10/17 15:39:30 hbirr Exp $
|
||||
; $Id: ntoskrnl.def,v 1.196 2004/10/18 20:56:22 navaraf Exp $
|
||||
;
|
||||
; reactos/ntoskrnl/ntoskrnl.def
|
||||
;
|
||||
|
@ -113,9 +113,9 @@ ExInterlockedIncrementLong@8
|
|||
ExInterlockedInsertHeadList@12
|
||||
ExInterlockedInsertTailList@12
|
||||
ExInterlockedPopEntryList@8
|
||||
ExInterlockedPopEntrySList@8
|
||||
@ExInterlockedPopEntrySList@8
|
||||
ExInterlockedPushEntryList@12
|
||||
ExInterlockedPushEntrySList@12
|
||||
@ExInterlockedPushEntrySList@12
|
||||
ExInterlockedRemoveHeadList@8
|
||||
ExIsProcessorFeaturePresent@4
|
||||
ExIsResourceAcquiredExclusiveLite@4
|
||||
|
|
Loading…
Reference in a new issue