| 144 | |
| 145 | |
| 146 | void cLightingThread::WaitForQueueEmpty(void) |
| 147 | { |
| 148 | cCSLock Lock(m_CS); |
| 149 | while (!m_ShouldTerminate && (!m_Queue.empty() || !m_PendingQueue.empty())) |
| 150 | { |
| 151 | cCSUnlock Unlock(Lock); |
| 152 | m_evtQueueEmpty.Wait(); |
| 153 | } |
| 154 | } |
| 155 | |
| 156 | |
| 157 |
no test coverage detected