| 183 | } |
| 184 | |
| 185 | void EthernetManager::stop() { |
| 186 | m_console->warn("stop begin"); |
| 187 | m_terminate = true; |
| 188 | if (m_thread) { |
| 189 | m_thread->join(); |
| 190 | m_thread = nullptr; |
| 191 | } |
| 192 | m_console->warn("stop end"); |
| 193 | } |
| 194 | |
| 195 | void EthernetManager::configure(int operating_mode, |
| 196 | const std::string& ethernet_card) { |
nothing calls this directly
no outgoing calls
no test coverage detected