| 28 | |
| 29 | |
| 30 | CAThread::CAThread() |
| 31 | : m_bIsRunning(false) |
| 32 | , m_pThreadFunc(NULL) |
| 33 | , m_iMaxMsgCount(32) |
| 34 | { |
| 35 | pthread_mutex_init(&m_SleepMutex, NULL); |
| 36 | pthread_cond_init(&m_SleepCondition, NULL); |
| 37 | } |
| 38 | |
| 39 | CAThread::~CAThread() |
| 40 | { |
nothing calls this directly
no test coverage detected