aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/helpers/Watchdog.hpp
blob: 1868bd0f7b539b4dae181b8619f370789043b73e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#pragma once

#include <memory>
#include <chrono>
#include <thread>
#include <condition_variable>

class CWatchdog {
  public:
    // must be called from the main thread
    CWatchdog();

    void startWatching();
    void endWatching();

  private:
    std::chrono::high_resolution_clock::time_point m_tTriggered;

    pthread_t                                      m_iMainThreadPID = 0;

    bool                                           m_bWatching  = false;
    bool                                           m_bWillWatch = false;

    std::unique_ptr<std::thread>                   m_pWatchdog;
    std::mutex                                     m_mWatchdogMutex;
    bool                                           m_bNotified = false;
    std::condition_variable                        m_cvWatchdogCondition;
};

inline std::unique_ptr<CWatchdog> g_pWatchdog;