Debugging Tools for Windows |
The GetInterruptTimeout method returns the number of seconds that the engine will wait when requesting a break into the debugger.
HRESULT
IDebugControl::GetInterruptTimeout(
OUT PULONG Seconds
);
This method may also return error values. See Return Values for more details.
GetInterruptTimeout is available in all versions of IDebugControl.
The engine requests a break into the debugger when SetInterrupt is called with DEBUG_INTERRUPT_ACTIVE. If this 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.
IDebugEventCallbacks::Exception, SetInterrupt, SetInterruptTimeout