mirror of
https://github.com/reactos/reactos.git
synced 2024-12-26 17:14:41 +00:00
- Rename KiCheckForKernelApcDelivery
svn path=/trunk/; revision=18977
This commit is contained in:
parent
f46f194ae4
commit
2bb75d7d0e
4 changed files with 8 additions and 8 deletions
|
@ -58,7 +58,7 @@ extern ULONG_PTR KERNEL_BASE;
|
||||||
if (!IsListEmpty(&_Thread->ApcState.ApcListHead[KernelMode]) && \
|
if (!IsListEmpty(&_Thread->ApcState.ApcListHead[KernelMode]) && \
|
||||||
(_Thread->SpecialApcDisable == 0)) \
|
(_Thread->SpecialApcDisable == 0)) \
|
||||||
{ \
|
{ \
|
||||||
KiKernelApcDeliveryCheck(); \
|
KiCheckForKernelApcDelivery(); \
|
||||||
} \
|
} \
|
||||||
} \
|
} \
|
||||||
}
|
}
|
||||||
|
@ -413,7 +413,7 @@ KiDeliverApc(
|
||||||
|
|
||||||
VOID
|
VOID
|
||||||
STDCALL
|
STDCALL
|
||||||
KiKernelApcDeliveryCheck(VOID);
|
KiCheckForKernelApcDelivery(VOID);
|
||||||
|
|
||||||
LONG
|
LONG
|
||||||
STDCALL
|
STDCALL
|
||||||
|
|
|
@ -17,10 +17,10 @@
|
||||||
/* FUNCTIONS *****************************************************************/
|
/* FUNCTIONS *****************************************************************/
|
||||||
|
|
||||||
/*++
|
/*++
|
||||||
* KiKernelApcDeliveryCheck
|
* KiCheckForKernelApcDelivery
|
||||||
* @implemented NT 5.2
|
* @implemented NT 5.2
|
||||||
*
|
*
|
||||||
* The KiKernelApcDeliveryCheck routine is called whenever APCs have just
|
* The KiCheckForKernelApcDelivery routine is called whenever APCs have just
|
||||||
* been re-enabled in Kernel Mode, such as after leaving a Critical or
|
* been re-enabled in Kernel Mode, such as after leaving a Critical or
|
||||||
* Guarded Region. It delivers APCs if the environment is right.
|
* Guarded Region. It delivers APCs if the environment is right.
|
||||||
*
|
*
|
||||||
|
@ -38,7 +38,7 @@
|
||||||
*--*/
|
*--*/
|
||||||
VOID
|
VOID
|
||||||
STDCALL
|
STDCALL
|
||||||
KiKernelApcDeliveryCheck(VOID)
|
KiCheckForKernelApcDelivery(VOID)
|
||||||
{
|
{
|
||||||
/* We should only deliver at passive */
|
/* We should only deliver at passive */
|
||||||
if (KeGetCurrentIrql() == PASSIVE_LEVEL)
|
if (KeGetCurrentIrql() == PASSIVE_LEVEL)
|
||||||
|
@ -127,7 +127,7 @@ KeLeaveCriticalRegion (VOID)
|
||||||
(Thread->SpecialApcDisable == 0))
|
(Thread->SpecialApcDisable == 0))
|
||||||
{
|
{
|
||||||
/* Check for the right environment */
|
/* Check for the right environment */
|
||||||
KiKernelApcDeliveryCheck();
|
KiCheckForKernelApcDelivery();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -59,7 +59,7 @@ KeLeaveGuardedRegion(VOID)
|
||||||
if (!IsListEmpty(&Thread->ApcState.ApcListHead[KernelMode]))
|
if (!IsListEmpty(&Thread->ApcState.ApcListHead[KernelMode]))
|
||||||
{
|
{
|
||||||
/* Check for APC Delivery */
|
/* Check for APC Delivery */
|
||||||
KiKernelApcDeliveryCheck();
|
KiCheckForKernelApcDelivery();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -653,8 +653,8 @@ KeWaitForSingleObject@20
|
||||||
@KiAcquireSpinLock@4
|
@KiAcquireSpinLock@4
|
||||||
;KiBugCheckData DATA
|
;KiBugCheckData DATA
|
||||||
KiCoprocessorError@0
|
KiCoprocessorError@0
|
||||||
|
KiCheckForKernelApcDelivery@0
|
||||||
KiDeliverApc@12
|
KiDeliverApc@12
|
||||||
KiKernelApcDeliveryCheck@0
|
|
||||||
KiDispatchInterrupt@0
|
KiDispatchInterrupt@0
|
||||||
KiEnableTimerWatchdog
|
KiEnableTimerWatchdog
|
||||||
KiInterruptDispatch2@8
|
KiInterruptDispatch2@8
|
||||||
|
|
Loading…
Reference in a new issue