Stop¶
- class ntoseye.Stop¶
Why the target stopped. Every stop is one of the nested kinds; test with
isinstance(stop, Stop.Breakpoint)ormatch. A stop is bound to the target generation it happened in.- property breakpoints: list[Breakpoint]¶
Breakpoint or watchpoint handles for this stop; empty on other kinds, so
bp in stop.breakpointsworks on any stop.
- final class Breakpoint¶
Subclass of
Stop.A code breakpoint or data-watchpoint hit.
condition_erroris set when its condition failed to evaluate; such a hit is surfaced, not skipped.
- final class Bugcheck¶
Subclass of
Stop.The guest is bugchecking (BSOD);
infois the bugcheck analysis.
- final class Exception¶
Subclass of
Stop.A Windows exception:
code(NTSTATUS), whether it is the first chance, and the faulting address.
- final class Interrupt¶
Subclass of
Stop.A break-in (
interrupt()), or another stop without an exception code.