mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 01:24:38 +00:00
Fix the tree at last, by reverting previous changes to RtlpCheckForActiveDebugger.
svn path=/trunk/; revision=17870
This commit is contained in:
parent
646ee13307
commit
43bdfc834c
2 changed files with 3 additions and 3 deletions
|
@ -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);
|
||||
|
|
|
@ -51,7 +51,7 @@ RtlLeaveHeapLock(PRTL_CRITICAL_SECTION CriticalSection);
|
|||
|
||||
BOOLEAN
|
||||
NTAPI
|
||||
RtlpCheckForActiveDebugger(BOOLEAN Type);
|
||||
RtlpCheckForActiveDebugger(VOID);
|
||||
|
||||
BOOLEAN
|
||||
NTAPI
|
||||
|
|
Loading…
Reference in a new issue