mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-06-09 18:56:02 +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 {
|
||||
Process gdb = session.getMIProcess();
|
||||
Process gdb = session.getGDBProcess();
|
||||
if (gdb instanceof Spawner) {
|
||||
Spawner gdbSpawner = (Spawner)gdb;
|
||||
gdbSpawner.interrupt();
|
||||
|
|
|
@ -113,7 +113,7 @@ public class Configuration implements ICDIConfiguration {
|
|||
os = System.getProperty("os.name", "");
|
||||
} catch (SecurityException e) {
|
||||
}
|
||||
Process gdb = miSession.getMIProcess();
|
||||
Process gdb = miSession.getGDBProcess();
|
||||
if (gdb instanceof Spawner) {
|
||||
// If we attached sending a control-c, seems to work.
|
||||
if (fAttached) {
|
||||
|
|
Loading…
Add table
Reference in a new issue