----------------------------------------------------------------------------- Main entry point for the timer thread. -----------------------------------------------------------------------------
| 37 | // Main entry point for the timer thread. |
| 38 | //----------------------------------------------------------------------------- |
| 39 | void TimerThread::TimerThreadEntryPoint |
| 40 | ( |
| 41 | Event* _exitEvent, |
| 42 | void* _context |
| 43 | ) |
| 44 | { |
| 45 | TimerThread* timer = (TimerThread*)_context; |
| 46 | if( timer ) |
| 47 | { |
| 48 | timer->TimerThreadProc( _exitEvent ); |
| 49 | } |
| 50 | } |
| 51 | |
| 52 | //----------------------------------------------------------------------------- |
| 53 | // <TimerThread::TimerThread> |
nothing calls this directly
no test coverage detected