Fix the tree at last, by reverting previous changes to RtlpCheckForActiveDebugger.
authorAleksey Bragin <aleksey@reactos.org>
Thu, 15 Sep 2005 20:24:30 +0000 (20:24 +0000)
committerAleksey Bragin <aleksey@reactos.org>
Thu, 15 Sep 2005 20:24:30 +0000 (20:24 +0000)
svn path=/trunk/; revision=17870

reactos/lib/rtl/exception.c
reactos/lib/rtl/rtlp.h

index cd1230c..6e2d0f5 100644 (file)
@@ -39,7 +39,7 @@ RtlRaiseException(PEXCEPTION_RECORD ExceptionRecord)
     Context.ContextFlags = CONTEXT_FULL;
 
     /* Check if we're being debugged (user-mode only) */
-    if (!RtlpCheckForActiveDebugger(TRUE))
+    if (!RtlpCheckForActiveDebugger())
     {
         /* Raise an exception immediately */
         Status = ZwRaiseException(ExceptionRecord, &Context, TRUE);
@@ -91,7 +91,7 @@ RtlRaiseStatus(NTSTATUS Status)
     Context.ContextFlags = CONTEXT_FULL;
 
     /* Check if we're being debugged (user-mode only) */
-    if (!RtlpCheckForActiveDebugger(TRUE))
+    if (!RtlpCheckForActiveDebugger())
     {
         /* Raise an exception immediately */
         ZwRaiseException(&ExceptionRecord, &Context, TRUE);
index 25625e0..55d0742 100644 (file)
@@ -51,7 +51,7 @@ RtlLeaveHeapLock(PRTL_CRITICAL_SECTION CriticalSection);
 \r
 BOOLEAN\r
 NTAPI\r
-RtlpCheckForActiveDebugger(BOOLEAN Type);\r
+RtlpCheckForActiveDebugger(VOID);\r
 \r
 BOOLEAN\r
 NTAPI\r