1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-06-06 09:16:02 +02:00

2005-06-25 Alain Magloire

We should consider a "^done" like a suspended only for CLICommands, for example:
	(gdb) run
	^done
	(gdb)
	* mi/org/eclipse/cdt/debug/mi/core/RxThread.java
This commit is contained in:
Alain Magloire 2005-06-25 16:45:37 +00:00
parent 732810e8ec
commit 978df06f37
2 changed files with 8 additions and 1 deletions

View file

@ -1,3 +1,10 @@
2005-06-25 Alain Magloire
We should consider a "^done" like a suspended only for CLICommands, for example:
(gdb) run
^done
(gdb)
* mi/org/eclipse/cdt/debug/mi/core/RxThread.java
2005-06-06 Alain Magloire
Fix PR 98182
* cdi/org/eclipse/cdt/debug/mi/core/cdi/BreakpointManager.java

View file

@ -201,7 +201,7 @@ public class RxThread extends Thread {
MIEvent event = new MIErrorEvent(session, rr, oobRecords);
list.add(event);
}
} else if ("done".equals(state)) { //$NON-NLS-1$
} else if ("done".equals(state) && cmd instanceof CLICommand) { //$NON-NLS-1$
// Done usually mean that gdb returns after some CLI command
// Some result record contains informaton specific to oob.
// This will happen when CLI-Command is use, for example