----------------------------------------------------------------------------- Start the driver thread -----------------------------------------------------------------------------
| 395 | // Start the driver thread |
| 396 | //----------------------------------------------------------------------------- |
| 397 | void Driver::Start |
| 398 | ( |
| 399 | ) |
| 400 | { |
| 401 | // Start the thread that will handle communications with the Z-Wave network |
| 402 | m_driverThread->Start( Driver::DriverThreadEntryPoint, this ); |
| 403 | m_dnsThread->Start ( DNSThread::DNSThreadEntryPoint, m_dns); |
| 404 | m_timerThread->Start( TimerThread::TimerThreadEntryPoint, m_timer ); |
| 405 | } |
| 406 | |
| 407 | //----------------------------------------------------------------------------- |
| 408 | // <Driver::DriverThreadEntryPoint> |
no outgoing calls
no test coverage detected