mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00
look for {access,read}-watchpoint-trigger.
This commit is contained in:
parent
25d2698045
commit
afbba0bbe9
1 changed files with 3 additions and 1 deletions
|
@ -329,7 +329,9 @@ public class RxThread extends Thread {
|
|||
event = new MIBreakpointEvent(rr);
|
||||
}
|
||||
session.getMIInferior().setSuspended();
|
||||
} else if ("watchpoint-trigger".equals(reason)) {
|
||||
} else if ("watchpoint-trigger".equals(reason) ||
|
||||
"read-watchpoint-trigger".equals(reason) ||
|
||||
"access-watchpoint-trigger".equals(reason)) {
|
||||
if (exec != null) {
|
||||
event = new MIWatchpointTriggerEvent(exec);
|
||||
} else if (rr != null) {
|
||||
|
|
Loading…
Add table
Reference in a new issue