Author: ros-arm-bringup
Date: Mon Jul 27 02:10:37 2009
New Revision: 42247
URL:
http://svn.reactos.org/svn/reactos?rev=42247&view=rev
Log:
- The old nonpaged pool statistic functions (TAB+xxx) in KDBG are incompatible with newer
nonpaged pool implementation -- remove them.
- The NtQuerySystemInformation API's pool information levels provide the same
information, when implemented properly.
Modified:
trunk/reactos/ntoskrnl/kd/kdmain.c
Modified: trunk/reactos/ntoskrnl/kd/kdmain.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/ntoskrnl/kd/kdmain.c?rev=4…
==============================================================================
--- trunk/reactos/ntoskrnl/kd/kdmain.c [iso-8859-1] (original)
+++ trunk/reactos/ntoskrnl/kd/kdmain.c [iso-8859-1] Mon Jul 27 02:10:37 2009
@@ -54,24 +54,8 @@
{
switch ((ULONG)Buffer1)
{
- case DumpNonPagedPool:
- MiDebugDumpNonPagedPool(FALSE);
- break;
-
case ManualBugCheck:
KeBugCheck(MANUALLY_INITIATED_CRASH);
- break;
-
- case DumpNonPagedPoolStats:
- MiDebugDumpNonPagedPoolStats(FALSE);
- break;
-
- case DumpNewNonPagedPool:
- MiDebugDumpNonPagedPool(TRUE);
- break;
-
- case DumpNewNonPagedPoolStats:
- MiDebugDumpNonPagedPoolStats(TRUE);
break;
case DumpAllThreads: