----------------------------------------------------------------------------- Entry point of the thread for creating and managing the worker threads -----------------------------------------------------------------------------
| 409 | // Entry point of the thread for creating and managing the worker threads |
| 410 | //----------------------------------------------------------------------------- |
| 411 | void Driver::DriverThreadEntryPoint |
| 412 | ( |
| 413 | Event* _exitEvent, |
| 414 | void* _context |
| 415 | ) |
| 416 | { |
| 417 | Driver* driver = (Driver*)_context; |
| 418 | if( driver ) |
| 419 | { |
| 420 | driver->DriverThreadProc( _exitEvent ); |
| 421 | } |
| 422 | } |
| 423 | |
| 424 | //----------------------------------------------------------------------------- |
| 425 | // <Driver::DriverThreadProc> |
nothing calls this directly
no test coverage detected