mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-06-09 10:46:02 +02:00
start the thread monitors.
This commit is contained in:
parent
4f906197da
commit
281e19abf3
1 changed files with 2 additions and 0 deletions
|
@ -31,6 +31,7 @@ public class GDBStreamsProxy implements IStreamsProxy {
|
|||
public IStreamMonitor getErrorStreamMonitor() {
|
||||
if (miLog == null) {
|
||||
miLog = new GDBStreamMonitor(session.getMILogStream());
|
||||
miLog.startMonitoring();
|
||||
}
|
||||
return miLog;
|
||||
}
|
||||
|
@ -41,6 +42,7 @@ public class GDBStreamsProxy implements IStreamsProxy {
|
|||
public IStreamMonitor getOutputStreamMonitor() {
|
||||
if (miConsole == null) {
|
||||
miConsole = new GDBStreamMonitor(session.getMIConsoleStream());
|
||||
miConsole.startMonitoring();
|
||||
}
|
||||
return miConsole;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue