Debugging Tools for Windows |
The SetInterruptTimeout method sets the number of seconds that the debugger engine should wait when requesting a break into the debugger.
HRESULT
IDebugControl::SetInterruptTimeout(
IN ULONG Seconds
);
This method may also return error values. See Return Values for more details.
SetInterruptTimeout is available in all versions of IDebugControl.
The engine requests a break into the debugger when SetInterrupt is called with the DEBUG_INTERRUPT_ACTIVE flag.
If an interrupt times out, the engine will generate a synthetic exception event. This event will be sent to event callback objects's IDebugEventCallbacks::Exception method.
Most targets do not support interrupt time-outs. Live user-mode debugging is one of the targets that does support them.
Headers: Defined in Dbgeng.h. Include Dbgeng.h.
GetInterruptTimeout, IDebugEventCallbacks::Exception, SetInterrupt