Esempio n. 1
0
 /// <summary>
 /// Notify the KCD that something occurred. Assume mutex is locked.
 /// </summary>
 private void NotifyKcdThread()
 {
     if (m_thread != null && m_threadWakeUpMsg == null)
     {
         m_threadWakeUpMsg = new KcdThreadWakeUpMsg(this);
         m_thread.PostToWorker(m_threadWakeUpMsg);
     }
 }