mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00
look for hw-awpt and hw-rwpt
This commit is contained in:
parent
1953a2ad50
commit
25d2698045
1 changed files with 3 additions and 1 deletions
|
@ -80,7 +80,7 @@ public class MIWatchpointTriggerEvent extends MIStoppedEvent {
|
||||||
String var = results[i].getVariable();
|
String var = results[i].getVariable();
|
||||||
MIValue value = results[i].getMIValue();
|
MIValue value = results[i].getMIValue();
|
||||||
|
|
||||||
if (var.equals("wpt")) {
|
if (var.equals("wpt") || var.equals("hw-awpt") || var.equals("hw-rwpt")) {
|
||||||
if (value instanceof MITuple) {
|
if (value instanceof MITuple) {
|
||||||
parseWPT((MITuple) value);
|
parseWPT((MITuple) value);
|
||||||
}
|
}
|
||||||
|
@ -143,6 +143,8 @@ public class MIWatchpointTriggerEvent extends MIStoppedEvent {
|
||||||
oldValue = str;
|
oldValue = str;
|
||||||
} else if (var.equals("new")) {
|
} else if (var.equals("new")) {
|
||||||
newValue = str;
|
newValue = str;
|
||||||
|
} else if (var.equals("value")) {
|
||||||
|
oldValue = newValue = str;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue