mirror of
https://github.com/reactos/reactos.git
synced 2025-04-05 21:21:33 +00:00
[XDK] Fix x64 version of KeGetCurrentProcessorNumber() and add KeGetCurrentProcessorIndex()
This commit is contained in:
parent
9215413a68
commit
e2560a5cad
3 changed files with 26 additions and 14 deletions
|
@ -152,6 +152,15 @@ KeRestoreFloatingPointState(
|
|||
return STATUS_SUCCESS;
|
||||
}
|
||||
|
||||
#if (NTDDI_VERSION >= NTDDI_WIN7)
|
||||
FORCEINLINE
|
||||
ULONG
|
||||
KeGetCurrentProcessorIndex(VOID)
|
||||
{
|
||||
return __readgsdword(0x1a4);
|
||||
}
|
||||
#endif
|
||||
|
||||
/* VOID
|
||||
* KeFlushIoBuffers(
|
||||
* IN PMDL Mdl,
|
||||
|
@ -320,11 +329,14 @@ KeGetPcr(VOID)
|
|||
return (PKPCR)__readgsqword(FIELD_OFFSET(KPCR, Self));
|
||||
}
|
||||
|
||||
#if (NTDDI_VERSION >= NTDDI_WIN7)
|
||||
_CRT_DEPRECATE_TEXT("KeGetCurrentProcessorNumber is deprecated. Use KeGetCurrentProcessorNumberEx or KeGetCurrentProcessorIndex instead.")
|
||||
#endif
|
||||
FORCEINLINE
|
||||
ULONG
|
||||
KeGetCurrentProcessorNumber(VOID)
|
||||
{
|
||||
return (ULONG)__readgsword(0x184);
|
||||
return __readgsbyte(0x184);
|
||||
}
|
||||
|
||||
$endif /* _NTDDK_ */
|
||||
|
|
|
@ -44,19 +44,6 @@ KeInvalidateRangeAllCaches(
|
|||
_In_ PVOID BaseAddress,
|
||||
_In_ ULONG Length);
|
||||
$endif (_NTDDK_)
|
||||
$if (_NTIFS_)
|
||||
|
||||
NTSTATUS
|
||||
NTAPI
|
||||
KeGetProcessorNumberFromIndex(
|
||||
_In_ ULONG ProcIndex,
|
||||
_Out_ PPROCESSOR_NUMBER ProcNumber);
|
||||
|
||||
ULONG
|
||||
NTAPI
|
||||
KeGetProcessorIndexFromNumber(
|
||||
_In_ PPROCESSOR_NUMBER ProcNumber);
|
||||
$endif (_NTIFS_)
|
||||
|
||||
#if (NTDDI_VERSION >= NTDDI_WIN2K)
|
||||
|
||||
|
|
|
@ -169,6 +169,16 @@ NTAPI
|
|||
KeRestoreFloatingPointState(
|
||||
_In_ PKFLOATING_SAVE FloatSave);
|
||||
|
||||
#if (NTDDI_VERSION >= NTDDI_WIN7)
|
||||
FORCEINLINE
|
||||
ULONG
|
||||
NTAPI
|
||||
KeGetCurrentProcessorIndex(VOID)
|
||||
{
|
||||
return __readfsbyte(0x51);
|
||||
}
|
||||
#endif
|
||||
|
||||
/* VOID
|
||||
* KeFlushIoBuffers(
|
||||
* IN PMDL Mdl,
|
||||
|
@ -315,6 +325,9 @@ typedef struct _KPCR {
|
|||
ULONG HalReserved[16];
|
||||
} KPCR, *PKPCR;
|
||||
|
||||
#if (NTDDI_VERSION >= NTDDI_WIN7)
|
||||
_CRT_DEPRECATE_TEXT("KeGetCurrentProcessorNumber is deprecated. Use KeGetCurrentProcessorNumberEx or KeGetCurrentProcessorIndex instead.")
|
||||
#endif
|
||||
FORCEINLINE
|
||||
ULONG
|
||||
KeGetCurrentProcessorNumber(VOID)
|
||||
|
|
Loading…
Reference in a new issue