| 43 | namespace WelsCommon { |
| 44 | |
| 45 | CWelsThread::CWelsThread() : |
| 46 | m_hThread (0), |
| 47 | m_bRunning (false), |
| 48 | m_bEndFlag (false) { |
| 49 | |
| 50 | WelsEventOpen (&m_hEvent); |
| 51 | WelsMutexInit(&m_hMutex); |
| 52 | m_iConVar = 1; |
| 53 | } |
| 54 | |
| 55 | CWelsThread::~CWelsThread() { |
| 56 | Kill(); |
nothing calls this directly
no test coverage detected