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

Target stream output added to parseable list. Bug 119370.

This commit is contained in:
Norbert Pltt 2006-03-06 07:40:25 +00:00
parent 7bf1557102
commit 37fb31f3ca

View file

@ -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) { } else if (stream instanceof MILogStreamOutput) {
// This is meant for the gdb console. // This is meant for the gdb console.
OutputStream log = session.getLogPipe(); OutputStream log = session.getLogPipe();