----------------------------------------------------------------------------- Entry point for running a function on this thread -----------------------------------------------------------------------------
| 145 | // Entry point for running a function on this thread |
| 146 | //----------------------------------------------------------------------------- |
| 147 | void ThreadImpl::Run |
| 148 | ( |
| 149 | ) |
| 150 | { |
| 151 | m_bIsRunning = true; |
| 152 | m_pfnThreadProc( m_exitEvent, m_context ); |
| 153 | m_bIsRunning = false; |
| 154 | |
| 155 | // Let any watchers know that the thread has finished running. |
| 156 | m_owner->Notify(); |
| 157 | } |
| 158 |