1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-23 17:05:26 +02:00

Bug 339456: Thread created event with wrong id after restart for GDB < 7.0

This commit is contained in:
Marc Khouzam 2011-05-09 19:16:43 +00:00
parent 371fea8238
commit a7c5159320

View file

@ -228,21 +228,6 @@ public class GDBControl extends AbstractMIControl implements IGDBControl {
);
}
/*
* This method creates a new inferior process object based on the current Pty or output stream.
*/
private void createInferiorProcess() {
// khouzam BROKEN because no one does the below when we restart
// Create the CLI event processor each time this method is called
// to reset the internal thread id count
// Bug 313372
if (fCLICommandProcessor != null) {
fCLICommandProcessor.dispose();
}
fCLICommandProcessor = new CLIEventProcessor(GDBControl.this, fControlDmc);
}
public AbstractCLIProcess getCLIProcess() {
return fCLIProcess;
}