Mercurial > pub > ImplabNet
diff Implab.Diagnostics.Interactive/InteractiveListener.cs @ 85:abe260860bd6 v2
fixed JSONXmlReader disposing under ugly mono
ObjectPool is made abstract
author | cin |
---|---|
date | Tue, 30 Sep 2014 16:05:35 +0400 |
parents | 790e8a997d30 |
children | 4c0e5ef99986 |
line wrap: on
line diff
--- a/Implab.Diagnostics.Interactive/InteractiveListener.cs Tue Sep 30 08:20:45 2014 +0400 +++ b/Implab.Diagnostics.Interactive/InteractiveListener.cs Tue Sep 30 16:05:35 2014 +0400 @@ -17,7 +17,7 @@ readonly Promise<object> m_guiStarted = new Promise<object>(); readonly IPromise m_guiFinished; - readonly IPromise m_workerFinished = new Promise<object>(); + // readonly IPromise m_workerFinished = new Promise<object>(); readonly MTQueue<TraceViewItem> m_queue = new MTQueue<TraceViewItem>(); readonly AutoResetEvent m_queueEvent = new AutoResetEvent(false); @@ -31,7 +31,7 @@ public InteractiveListener(bool global) : base(global) { m_guiFinished = AsyncPool.InvokeNewThread(GuiThread); - m_workerFinished = AsyncPool.InvokeNewThread(QueueThread); + /*m_workerFinished = */AsyncPool.InvokeNewThread(QueueThread); m_guiStarted.Join(); }