10#include <condition_variable>
20 template <
class _Clock,
class _Duration =
typename _Clock::duration>
30 watchdog(_In_ _Duration timeout, _In_ std::function<
void()> callback) :
35 m_thread([](_Inout_
watchdog& wd) { wd.run(); }, std::ref(*
this))
44 const std::lock_guard<std::mutex> lk(m_mutex);
48 if (m_thread.joinable())
60 const std::lock_guard<std::mutex> lk(m_mutex);
72 std::unique_lock<std::mutex> lk(m_mutex);
74 if (m_cv.wait_for(lk,
m_timeout, [&] {return m_quit || phase != m_phase; })) {
85 std::unique_lock<std::mutex> lk(m_mutex);
99 std::condition_variable m_cv;
100 std::thread m_thread;
Triggers callback if not reset frequently enough.
Definition watchdog.hpp:22
watchdog(_Duration timeout, std::function< void()> callback)
Starts the watchdog.
Definition watchdog.hpp:30
size_t m_phase
A counter we are incrementing to keep the watchdog happy.
Definition watchdog.hpp:94
_Duration m_timeout
How long the watchdog is waiting for a reset.
Definition watchdog.hpp:96
~watchdog()
Stops the watchdog.
Definition watchdog.hpp:41
bool m_quit
Quit the watchdog.
Definition watchdog.hpp:95
void reset()
Resets the watchdog.
Definition watchdog.hpp:57
std::function< void()> m_callback
The function watchdog calls on timeout.
Definition watchdog.hpp:97