mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-01 06:05:24 +02:00
[301548] Properly handle failed insertion of tracepoint
This commit is contained in:
parent
892fa357ab
commit
5f29bf5235
2 changed files with 10 additions and 4 deletions
|
@ -1,5 +1,5 @@
|
||||||
/*******************************************************************************
|
/*******************************************************************************
|
||||||
* Copyright (c) 2009 Ericsson and others.
|
* Copyright (c) 2009, 2010 Ericsson and others.
|
||||||
* All rights reserved. This program and the accompanying materials
|
* All rights reserved. This program and the accompanying materials
|
||||||
* are made available under the terms of the Eclipse Public License v1.0
|
* are made available under the terms of the Eclipse Public License v1.0
|
||||||
* which accompanies this distribution, and is available at
|
* which accompanies this distribution, and is available at
|
||||||
|
@ -513,9 +513,15 @@ public class GDBBreakpoints_7_0 extends AbstractDsfService implements IBreakpoin
|
||||||
new DataRequestMonitor<CLITraceInfo>(getExecutor(), drm) {
|
new DataRequestMonitor<CLITraceInfo>(getExecutor(), drm) {
|
||||||
@Override
|
@Override
|
||||||
protected void handleSuccess() {
|
protected void handleSuccess() {
|
||||||
|
final Integer tpReference = getData().getTraceReference();
|
||||||
|
if (tpReference == null) {
|
||||||
|
drm.setStatus(new Status(IStatus.ERROR, GdbPlugin.PLUGIN_ID, REQUEST_FAILED, BREAKPOINT_INSERTION_FAILURE, null));
|
||||||
|
drm.done();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
// The simplest way to convert from the CLITraceInfo to a MIBreakInsertInfo
|
// The simplest way to convert from the CLITraceInfo to a MIBreakInsertInfo
|
||||||
// is to list the breakpoints and take the proper output
|
// is to list the breakpoints and take the proper output
|
||||||
final int tpReference = getData().getTraceReference();
|
|
||||||
fConnection.queueCommand(
|
fConnection.queueCommand(
|
||||||
new MIBreakList(context),
|
new MIBreakList(context),
|
||||||
new DataRequestMonitor<MIBreakListInfo>(getExecutor(), drm) {
|
new DataRequestMonitor<MIBreakListInfo>(getExecutor(), drm) {
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/*******************************************************************************
|
/*******************************************************************************
|
||||||
* Copyright (c) 2009 Ericsson and others.
|
* Copyright (c) 2009, 2010 Ericsson and others.
|
||||||
* All rights reserved. This program and the accompanying materials
|
* All rights reserved. This program and the accompanying materials
|
||||||
* are made available under the terms of the Eclipse Public License v1.0
|
* are made available under the terms of the Eclipse Public License v1.0
|
||||||
* which accompanies this distribution, and is available at
|
* which accompanies this distribution, and is available at
|
||||||
|
@ -28,7 +28,7 @@ public class CLITraceInfo extends MIInfo {
|
||||||
parse();
|
parse();
|
||||||
}
|
}
|
||||||
|
|
||||||
Integer fReference = null;
|
private Integer fReference = null;
|
||||||
|
|
||||||
public Integer getTraceReference(){
|
public Integer getTraceReference(){
|
||||||
return fReference;
|
return fReference;
|
||||||
|
|
Loading…
Add table
Reference in a new issue