From 37fb31f3ca10169f55880aefc9ae76cdc5cd9971 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Norbert=20Pl=F6tt?= Date: Mon, 6 Mar 2006 07:40:25 +0000 Subject: [PATCH] Target stream output added to parseable list. Bug 119370. --- .../mi/org/eclipse/cdt/debug/mi/core/RxThread.java | 4 ++++ 1 file changed, 4 insertions(+) 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();