From 360720bdb67bfcc55493471175e34d5b05640d5b Mon Sep 17 00:00:00 2001 From: ReactOS Portable Systems Group Date: Mon, 27 Jul 2009 00:10:37 +0000 Subject: [PATCH] - 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. svn path=/trunk/; revision=42247 --- reactos/ntoskrnl/kd/kdmain.c | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/reactos/ntoskrnl/kd/kdmain.c b/reactos/ntoskrnl/kd/kdmain.c index 5f0e8efa37c..83c151e35e2 100644 --- a/reactos/ntoskrnl/kd/kdmain.c +++ b/reactos/ntoskrnl/kd/kdmain.c @@ -54,26 +54,10 @@ KdpServiceDispatcher(ULONG Service, { 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: PspDumpThreads(TRUE); break;