[ros-diffs] [ion] 18977: - Rename KiCheckForKernelApcDelivery
ion at svn.reactos.com
ion at svn.reactos.com
Thu Nov 3 17:58:50 CET 2005
- Rename KiCheckForKernelApcDelivery
Modified: trunk/reactos/ntoskrnl/include/internal/ke.h
Modified: trunk/reactos/ntoskrnl/ke/apc.c
Modified: trunk/reactos/ntoskrnl/ke/gmutex.c
Modified: trunk/reactos/ntoskrnl/ntoskrnl.def
_____
Modified: trunk/reactos/ntoskrnl/include/internal/ke.h
--- trunk/reactos/ntoskrnl/include/internal/ke.h 2005-11-03
14:38:29 UTC (rev 18976)
+++ trunk/reactos/ntoskrnl/include/internal/ke.h 2005-11-03
16:58:43 UTC (rev 18977)
@@ -58,7 +58,7 @@
if (!IsListEmpty(&_Thread->ApcState.ApcListHead[KernelMode]) &&
\
(_Thread->SpecialApcDisable == 0)) \
{ \
- KiKernelApcDeliveryCheck(); \
+ KiCheckForKernelApcDelivery(); \
} \
} \
}
@@ -413,7 +413,7 @@
VOID
STDCALL
-KiKernelApcDeliveryCheck(VOID);
+KiCheckForKernelApcDelivery(VOID);
LONG
STDCALL
_____
Modified: trunk/reactos/ntoskrnl/ke/apc.c
--- trunk/reactos/ntoskrnl/ke/apc.c 2005-11-03 14:38:29 UTC (rev
18976)
+++ trunk/reactos/ntoskrnl/ke/apc.c 2005-11-03 16:58:43 UTC (rev
18977)
@@ -17,10 +17,10 @@
/* FUNCTIONS
*****************************************************************/
/*++
- * KiKernelApcDeliveryCheck
+ * KiCheckForKernelApcDelivery
* @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
* Guarded Region. It delivers APCs if the environment is right.
*
@@ -38,7 +38,7 @@
*--*/
VOID
STDCALL
-KiKernelApcDeliveryCheck(VOID)
+KiCheckForKernelApcDelivery(VOID)
{
/* We should only deliver at passive */
if (KeGetCurrentIrql() == PASSIVE_LEVEL)
@@ -127,7 +127,7 @@
(Thread->SpecialApcDisable == 0))
{
/* Check for the right environment */
- KiKernelApcDeliveryCheck();
+ KiCheckForKernelApcDelivery();
}
}
}
_____
Modified: trunk/reactos/ntoskrnl/ke/gmutex.c
--- trunk/reactos/ntoskrnl/ke/gmutex.c 2005-11-03 14:38:29 UTC (rev
18976)
+++ trunk/reactos/ntoskrnl/ke/gmutex.c 2005-11-03 16:58:43 UTC (rev
18977)
@@ -59,7 +59,7 @@
if (!IsListEmpty(&Thread->ApcState.ApcListHead[KernelMode]))
{
/* Check for APC Delivery */
- KiKernelApcDeliveryCheck();
+ KiCheckForKernelApcDelivery();
}
}
}
_____
Modified: trunk/reactos/ntoskrnl/ntoskrnl.def
--- trunk/reactos/ntoskrnl/ntoskrnl.def 2005-11-03 14:38:29 UTC (rev
18976)
+++ trunk/reactos/ntoskrnl/ntoskrnl.def 2005-11-03 16:58:43 UTC (rev
18977)
@@ -653,8 +653,8 @@
@KiAcquireSpinLock at 4
;KiBugCheckData DATA
KiCoprocessorError at 0
+KiCheckForKernelApcDelivery at 0
KiDeliverApc at 12
-KiKernelApcDeliveryCheck at 0
KiDispatchInterrupt at 0
KiEnableTimerWatchdog
KiInterruptDispatch2 at 8
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://www.reactos.org/pipermail/ros-diffs/attachments/20051103/aef70bad/attachment.html
More information about the Ros-diffs
mailing list