1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-21 21:52:10 +02:00

debug comment out.

This commit is contained in:
Alain Magloire 2002-08-20 13:33:46 +00:00
parent fa183e80b0
commit 4a0f4e28c3

View file

@ -51,7 +51,7 @@ public class MIPlugin extends Plugin {
String[]args = new String[]{"gdb", "-q", "-i", "mi", program};
Process gdb = Runtime.getRuntime().exec(args);
MISession session = createMISession(gdb.getInputStream(), gdb.getOutputStream());
///*
/*
try {
CommandFactory factory = session.getCommandFactory();
MIBreakInsert bkpt= factory.createMIBreakInsert(true, false, null, 0, "routine");
@ -63,7 +63,7 @@ public class MIPlugin extends Plugin {
} catch (MIException e) {
throw new IOException("Failed to attach");
}
//*/
*/
return new CSession(session);
}