Author: hbelusca
Date: Sat Aug 29 16:56:09 2015
New Revision: 68864
URL: 
http://svn.reactos.org/svn/reactos?rev=68864&view=rev
Log:
[NTOS:KD]: Disable to dprints.
Modified:
    trunk/reactos/ntoskrnl/kd64/kdbreak.c
Modified: trunk/reactos/ntoskrnl/kd64/kdbreak.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/ntoskrnl/kd64/kdbreak.c?re…
==============================================================================
--- trunk/reactos/ntoskrnl/kd64/kdbreak.c       [iso-8859-1] (original)
+++ trunk/reactos/ntoskrnl/kd64/kdbreak.c       [iso-8859-1] Sat Aug 29 16:56:09 2015
@@ -194,7 +194,7 @@
                 if (!NT_SUCCESS(Status))
                 {
                     /* This should never happen */
-                    KdpDprintf("Failed to delete deferred breakpoint at address
0x%p\n",
+                    KdpDprintf("Unable to delete deferred breakpoint at address
0x%p\n",
                                KdpBreakpointTable[i].Address);
                     KdpOweBreakpoint = TRUE;
                 }
@@ -252,8 +252,8 @@
     if (!NT_SUCCESS(Status))
     {
         /* Memory is inaccessible now, restoring original instruction is deferred */
-        KdpDprintf("Failed to delete breakpoint at address 0x%p\n",
-                   KdpBreakpointTable[BpIndex].Address);
+        // KdpDprintf("Failed to delete breakpoint at address 0x%p\n",
+        //            KdpBreakpointTable[BpIndex].Address);
         KdpBreakpointTable[BpIndex].Flags |= KD_BREAKPOINT_EXPIRED;
         KdpOweBreakpoint = TRUE;
         return FALSE;
@@ -293,8 +293,9 @@
                                  NULL);
     if (!NT_SUCCESS(Status))
     {
-        KdpDprintf("Failed to restore breakpoint at address 0x%p\n",
-                   KdpBreakpointTable[BpIndex].Address);
+        /* Memory is inaccessible now, restoring breakpoint is deferred */
+        // KdpDprintf("Failed to restore breakpoint at address 0x%p\n",
+        //            KdpBreakpointTable[BpIndex].Address);
         KdpBreakpointTable[BpIndex].Flags |= KD_BREAKPOINT_PENDING;
         KdpOweBreakpoint = TRUE;
         return FALSE;