mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 01:15:09 +00:00
Try to fix some symbol names
svn path=/trunk/; revision=35252
This commit is contained in:
parent
8eb52874be
commit
876fa09ee5
3 changed files with 9 additions and 9 deletions
|
@ -74,7 +74,7 @@ ExInterlockedFlushSList(IN PSLIST_HEADER ListHead)
|
|||
PSLIST_ENTRY
|
||||
FASTCALL
|
||||
ExInterlockedPushEntrySList(IN PSLIST_HEADER ListHead,
|
||||
IN PSLIST_ENTRY ListEntry)
|
||||
IN PSLIST_ENTRY ListEntry,
|
||||
IN PKSPIN_LOCK Lock)
|
||||
{
|
||||
return InterlockedPushEntrySList(ListHead, ListEntry);
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
|
||||
ULONG KiISRTimeout = 55;
|
||||
USHORT KiISROverflow = 30000;
|
||||
extern ULONG KiChainedDispatch2ndLvl;
|
||||
extern ULONG NTAPI KiChainedDispatch2ndLvl(VOID);
|
||||
|
||||
/* PRIVATE FUNCTIONS *********************************************************/
|
||||
|
||||
|
|
|
@ -57,9 +57,9 @@ _KiComputeTimerTableIndex@8:
|
|||
ret 8
|
||||
.endfunc
|
||||
|
||||
.globl _KeUpdateRunTime@4
|
||||
.func KeUpdateRunTime@4
|
||||
_KeUpdateRunTime@4:
|
||||
.globl _KeUpdateRunTime@8
|
||||
.func KeUpdateRunTime@8
|
||||
_KeUpdateRunTime@8:
|
||||
|
||||
/* Get KPCR */
|
||||
mov eax, [fs:KPCR_SELF]
|
||||
|
@ -227,9 +227,9 @@ SkipTick:
|
|||
ret 4
|
||||
.endfunc
|
||||
|
||||
.globl _KeUpdateSystemTime@0
|
||||
.func KeUpdateSystemTime@0
|
||||
_KeUpdateSystemTime@0:
|
||||
.globl _KeUpdateSystemTime@12
|
||||
.func KeUpdateSystemTime@12
|
||||
_KeUpdateSystemTime@12:
|
||||
|
||||
/* Check if this tick is getting skipped */
|
||||
cmp byte ptr fs:[KPCR_PRCB_SKIP_TICK], 0
|
||||
|
@ -355,7 +355,7 @@ NoDebug:
|
|||
|
||||
/* Update system run time */
|
||||
push [esp]
|
||||
call _KeUpdateRunTime@4
|
||||
call _KeUpdateRunTime@8
|
||||
jmp Done
|
||||
|
||||
IncompleteTick2:
|
||||
|
|
Loading…
Reference in a new issue