----------------------------------------------------------------------------- Entry point for running a function on this thread -----------------------------------------------------------------------------
| 174 | // Entry point for running a function on this thread |
| 175 | //----------------------------------------------------------------------------- |
| 176 | void ThreadImpl::Run |
| 177 | ( |
| 178 | ) |
| 179 | { |
| 180 | m_bIsRunning = true; |
| 181 | m_pfnThreadProc( m_exitEvent, m_pContext ); |
| 182 | m_bIsRunning = false; |
| 183 | |
| 184 | // Let any watchers know that the thread has finished running |
| 185 | m_owner->Notify(); |
| 186 | } |