mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-23 17:05:26 +02:00
getMIProcess was rename getGDBProcess
This commit is contained in:
parent
04838b2b01
commit
19ecaa14e1
2 changed files with 2 additions and 2 deletions
|
@ -176,7 +176,7 @@ public class MIInferior extends Process {
|
||||||
}
|
}
|
||||||
|
|
||||||
public void interrupt() throws MIException {
|
public void interrupt() throws MIException {
|
||||||
Process gdb = session.getMIProcess();
|
Process gdb = session.getGDBProcess();
|
||||||
if (gdb instanceof Spawner) {
|
if (gdb instanceof Spawner) {
|
||||||
Spawner gdbSpawner = (Spawner)gdb;
|
Spawner gdbSpawner = (Spawner)gdb;
|
||||||
gdbSpawner.interrupt();
|
gdbSpawner.interrupt();
|
||||||
|
|
|
@ -113,7 +113,7 @@ public class Configuration implements ICDIConfiguration {
|
||||||
os = System.getProperty("os.name", "");
|
os = System.getProperty("os.name", "");
|
||||||
} catch (SecurityException e) {
|
} catch (SecurityException e) {
|
||||||
}
|
}
|
||||||
Process gdb = miSession.getMIProcess();
|
Process gdb = miSession.getGDBProcess();
|
||||||
if (gdb instanceof Spawner) {
|
if (gdb instanceof Spawner) {
|
||||||
// If we attached sending a control-c, seems to work.
|
// If we attached sending a control-c, seems to work.
|
||||||
if (fAttached) {
|
if (fAttached) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue