mirror of
https://github.com/reactos/reactos.git
synced 2025-02-23 00:45:24 +00:00
[NTOS:KE] KiIdleLoop(): Add DECLSPEC_NORETURN, Remove FASTCALL
This commit is contained in:
parent
43ea864405
commit
5f1d79f0c5
5 changed files with 5 additions and 4 deletions
|
@ -1015,8 +1015,8 @@ KiQuantumEnd(
|
|||
VOID
|
||||
);
|
||||
|
||||
DECLSPEC_NORETURN
|
||||
VOID
|
||||
FASTCALL
|
||||
KiIdleLoop(
|
||||
VOID
|
||||
);
|
||||
|
|
|
@ -167,8 +167,8 @@ KiSwitchKernelStack(PVOID StackBase, PVOID StackLimit)
|
|||
return OldStackBase;
|
||||
}
|
||||
|
||||
DECLSPEC_NORETURN
|
||||
VOID
|
||||
FASTCALL
|
||||
KiIdleLoop(VOID)
|
||||
{
|
||||
PKPRCB Prcb = KeGetCurrentPrcb();
|
||||
|
|
|
@ -148,8 +148,8 @@ KiInitializeContextThread(IN PKTHREAD Thread,
|
|||
Thread->KernelStack = (PVOID)CtxSwitchFrame;
|
||||
}
|
||||
|
||||
DECLSPEC_NORETURN
|
||||
VOID
|
||||
FASTCALL
|
||||
KiIdleLoop(VOID)
|
||||
{
|
||||
PKPRCB Prcb = KeGetCurrentPrcb();
|
||||
|
|
|
@ -15,6 +15,7 @@
|
|||
/* FUNCTIONS ******************************************************************/
|
||||
|
||||
#if 0
|
||||
DECLSPEC_NORETURN
|
||||
VOID
|
||||
KiIdleLoop(VOID)
|
||||
{
|
||||
|
|
|
@ -266,8 +266,8 @@ KiInitializeContextThread(IN PKTHREAD Thread,
|
|||
Thread->KernelStack = (PVOID)CtxSwitchFrame;
|
||||
}
|
||||
|
||||
DECLSPEC_NORETURN
|
||||
VOID
|
||||
FASTCALL
|
||||
KiIdleLoop(VOID)
|
||||
{
|
||||
PKPRCB Prcb = KeGetCurrentPrcb();
|
||||
|
|
Loading…
Reference in a new issue