[NTOS:KE] KiIdleLoop(): Add DECLSPEC_NORETURN, Remove FASTCALL

This commit is contained in:
Serge Gautherie 2020-09-09 03:46:56 +02:00 committed by Victor Perevertkin
parent 43ea864405
commit 5f1d79f0c5
5 changed files with 5 additions and 4 deletions

View file

@ -1015,8 +1015,8 @@ KiQuantumEnd(
VOID
);
DECLSPEC_NORETURN
VOID
FASTCALL
KiIdleLoop(
VOID
);

View file

@ -167,8 +167,8 @@ KiSwitchKernelStack(PVOID StackBase, PVOID StackLimit)
return OldStackBase;
}
DECLSPEC_NORETURN
VOID
FASTCALL
KiIdleLoop(VOID)
{
PKPRCB Prcb = KeGetCurrentPrcb();

View file

@ -148,8 +148,8 @@ KiInitializeContextThread(IN PKTHREAD Thread,
Thread->KernelStack = (PVOID)CtxSwitchFrame;
}
DECLSPEC_NORETURN
VOID
FASTCALL
KiIdleLoop(VOID)
{
PKPRCB Prcb = KeGetCurrentPrcb();

View file

@ -15,6 +15,7 @@
/* FUNCTIONS ******************************************************************/
#if 0
DECLSPEC_NORETURN
VOID
KiIdleLoop(VOID)
{

View file

@ -266,8 +266,8 @@ KiInitializeContextThread(IN PKTHREAD Thread,
Thread->KernelStack = (PVOID)CtxSwitchFrame;
}
DECLSPEC_NORETURN
VOID
FASTCALL
KiIdleLoop(VOID)
{
PKPRCB Prcb = KeGetCurrentPrcb();