1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-22 06:02:11 +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}; String[]args = new String[]{"gdb", "-q", "-i", "mi", program};
Process gdb = Runtime.getRuntime().exec(args); Process gdb = Runtime.getRuntime().exec(args);
MISession session = createMISession(gdb.getInputStream(), gdb.getOutputStream()); MISession session = createMISession(gdb.getInputStream(), gdb.getOutputStream());
///* /*
try { try {
CommandFactory factory = session.getCommandFactory(); CommandFactory factory = session.getCommandFactory();
MIBreakInsert bkpt= factory.createMIBreakInsert(true, false, null, 0, "routine"); MIBreakInsert bkpt= factory.createMIBreakInsert(true, false, null, 0, "routine");
@ -63,7 +63,7 @@ public class MIPlugin extends Plugin {
} catch (MIException e) { } catch (MIException e) {
throw new IOException("Failed to attach"); throw new IOException("Failed to attach");
} }
//*/ */
return new CSession(session); return new CSession(session);
} }