diff --git a/debug/org.eclipse.cdt.debug.mi.core/mi/org/eclipse/cdt/debug/mi/core/RxThread.java b/debug/org.eclipse.cdt.debug.mi.core/mi/org/eclipse/cdt/debug/mi/core/RxThread.java index 9559fdf6328..84b5bb07fea 100644 --- a/debug/org.eclipse.cdt.debug.mi.core/mi/org/eclipse/cdt/debug/mi/core/RxThread.java +++ b/debug/org.eclipse.cdt.debug.mi.core/mi/org/eclipse/cdt/debug/mi/core/RxThread.java @@ -356,6 +356,10 @@ public class RxThread extends Thread { } } } + // Accumulate the Target Stream Output response for parsing. + // Some commands, e.g. 'monitor' will put valuable info in the Console Stream. + // This fixes bug 119370. + oobList.add(stream); } else if (stream instanceof MILogStreamOutput) { // This is meant for the gdb console. OutputStream log = session.getLogPipe();