----------------------------------------------------------------------------- Entry point of the thread for poll Z-Wave devices -----------------------------------------------------------------------------
| 4454 | // Entry point of the thread for poll Z-Wave devices |
| 4455 | //----------------------------------------------------------------------------- |
| 4456 | void Driver::PollThreadEntryPoint |
| 4457 | ( |
| 4458 | Event* _exitEvent, |
| 4459 | void* _context |
| 4460 | ) |
| 4461 | { |
| 4462 | Driver* driver = (Driver*)_context; |
| 4463 | if( driver ) |
| 4464 | { |
| 4465 | driver->PollThreadProc( _exitEvent ); |
| 4466 | } |
| 4467 | } |
| 4468 | |
| 4469 | //----------------------------------------------------------------------------- |
| 4470 | // <Driver::PollThreadProc> |
nothing calls this directly
no test coverage detected