mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-06-06 17:26:01 +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:
parent
732810e8ec
commit
978df06f37
2 changed files with 8 additions and 1 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue