RxDbgBreakPoint function

RxDbgBreakPoint breaks into the kernel debugger if one is installed.

Syntax

VOID RxDbgBreakPoint(
   ULONG LineNumber
);

Parameters

LineNumber
The line number in the source file where RxDbgBreakPoint was called.

Return value

None

Remarks

This routine calls the kernel DbgBreakPoint routine.

This routine raises an exception that is handled by the kernel debugger if one is installed; otherwise it is handled by the debug system. If no debugger is connected to the system, the exception can be handled in the standard way.

In kernel mode, a break exception that is not handled will cause a blue screen (bug check) to result. You can, however, connect a kernel-mode debugger to the target computer that has kernel debugging enabled. For more information, see Windows Debugging.

Requirements

Target platform

Desktop

Header

Rxassert.h (include Rxassert.h)

IRQL

<= APC_LEVEL

See also

RxAssert

Windows Debugging