| 61 | } |
| 62 | |
| 63 | void CAThread::notifyRun(void* param) |
| 64 | { |
| 65 | if (m_ThreadDataQueue.GetCount() < m_iMaxMsgCount) |
| 66 | { |
| 67 | m_ThreadDataQueue.AddElement(param); |
| 68 | } |
| 69 | } |
| 70 | |
| 71 | void CAThread::clear(bool bFree) |
| 72 | { |
nothing calls this directly
no test coverage detected