1
0
Fork 0
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:
Marc Khouzam 2010-02-02 15:59:29 +00:00
parent 892fa357ab
commit 5f29bf5235
2 changed files with 10 additions and 4 deletions

View file

@ -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
* are made available under the terms of the Eclipse Public License v1.0
* 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) {
@Override
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
// is to list the breakpoints and take the proper output
final int tpReference = getData().getTraceReference();
fConnection.queueCommand(
new MIBreakList(context),
new DataRequestMonitor<MIBreakListInfo>(getExecutor(), drm) {

View file

@ -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
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@ -28,7 +28,7 @@ public class CLITraceInfo extends MIInfo {
parse();
}
Integer fReference = null;
private Integer fReference = null;
public Integer getTraceReference(){
return fReference;