1
0
Fork 0
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:
Alain Magloire 2002-10-22 20:27:33 +00:00
parent 04838b2b01
commit 19ecaa14e1
2 changed files with 2 additions and 2 deletions

View file

@ -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();

View file

@ -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) {