mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-17 22:15:23 +02:00
[302636] -trhead-select and -stack-select-frame should not use the --thread or --frame options
This commit is contained in:
parent
b0e1d196b9
commit
57f9dad278
2 changed files with 11 additions and 2 deletions
|
@ -1,5 +1,5 @@
|
|||
/*******************************************************************************
|
||||
* Copyright (c) 2000, 2006 QNX Software Systems and others.
|
||||
* Copyright (c) 2000, 2010 QNX Software Systems 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,4 +28,9 @@ public class MIStackSelectFrame extends MICommand<MIInfo> {
|
|||
public MIStackSelectFrame(IDMContext ctx, int frameNum) {
|
||||
super(ctx, "-stack-select-frame", new String[]{Integer.toString(frameNum)}, new String[0]); //$NON-NLS-1$
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean supportsThreadAndFrameOptions() {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*******************************************************************************
|
||||
* Copyright (c) 2008 QNX Software Systems and others.
|
||||
* Copyright (c) 2008, 2910 QNX Software Systems 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
|
||||
|
@ -38,4 +38,8 @@ public class MIThreadSelect extends MICommand<MIInfo>
|
|||
super(ctx, "-thread-select", new String[]{threadNum}); //$NON-NLS-1$
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean supportsThreadAndFrameOptions() {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue