----------------------------------------------------------------------------- Start a function running on this thread -----------------------------------------------------------------------------
| 70 | // Start a function running on this thread |
| 71 | //----------------------------------------------------------------------------- |
| 72 | bool Thread::Start |
| 73 | ( |
| 74 | pfnThreadProc_t _pfnThreadProc, |
| 75 | void* _context |
| 76 | ) |
| 77 | { |
| 78 | return( m_pImpl->Start( _pfnThreadProc, m_exitEvent, _context ) ); |
| 79 | } |
| 80 | |
| 81 | //----------------------------------------------------------------------------- |
| 82 | // <Thread::Stop> |