| 29 | #include "openhd_util.h" |
| 30 | |
| 31 | openhd::AsyncHandle::AsyncHandle() { |
| 32 | m_watchdog_run = true; |
| 33 | m_watchdog_thread = |
| 34 | std::make_unique<std::thread>(&AsyncHandle::check_watchdog, this); |
| 35 | } |
| 36 | |
| 37 | openhd::AsyncHandle::~AsyncHandle() { |
| 38 | m_watchdog_run = false; |
nothing calls this directly
no outgoing calls
no test coverage detected