We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
TARGET_HALT_{BREAK,WATCH}POINT
1 parent f6169c5 commit 31ff9caCopy full SHA for 31ff9ca
src/include/target.h
@@ -78,7 +78,12 @@ typedef enum target_halt_reason {
78
TARGET_HALT_ERROR, /* Failed to read target status */
79
TARGET_HALT_REQUEST,
80
TARGET_HALT_STEPPING,
81
+ /*
82
+ * Used to both indicate that the target hit a breakpoint, and to
83
+ * indicate that the target hit a watchpoint but we can't figure out which
84
+ */
85
TARGET_HALT_BREAKPOINT,
86
+ /* Used to indicate the target hit a watchpoint and we know which */
87
TARGET_HALT_WATCHPOINT,
88
TARGET_HALT_FAULT,
89
} target_halt_reason_e;
0 commit comments