diff options
author | segfault <toni@impl.cc> | 2020-12-19 19:27:05 +0100 |
---|---|---|
committer | segfault <toni@impl.cc> | 2020-12-19 19:27:05 +0100 |
commit | 09eb5df77d2db0693db4f8c2d4f6f96c0b7eb32e (patch) | |
tree | 1f05d52be652457ee42c6cdd8bbe00a2de2b73d0 /MemDriverLib | |
parent | 1f8b3cf72f0f9d1803fbc5543a475aeec02bba19 (diff) |
PingThread calls function on timeout.
Diffstat (limited to 'MemDriverLib')
-rw-r--r-- | MemDriverLib/MemDriverLib.cpp | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/MemDriverLib/MemDriverLib.cpp b/MemDriverLib/MemDriverLib.cpp index 8123d34..1a19552 100644 --- a/MemDriverLib/MemDriverLib.cpp +++ b/MemDriverLib/MemDriverLib.cpp @@ -357,18 +357,22 @@ SendRecvReturn KInterface::RecvWait(DWORD timeout) return SRR_ERR_UEVENT; } -void KInterface::PingThread(void) +void KInterface::PingThread(void(__cdecl* onTimeout)(void)) { while (m_pingThreadStarted == true) { std::this_thread::sleep_for(std::chrono::milliseconds(DEFAULT_TIMEOUT_MS)); - MtPing(); + if (MtPing() != true) { + m_pingThreadStarted = false; + break; + } } + onTimeout(); } -void KInterface::StartPingThread(void) +void KInterface::StartPingThread(void(__cdecl* onTimeout)(void)) { m_pingThreadStarted = true; - m_pingThread = std::move(std::thread(&KInterface::PingThread, this)); + m_pingThread = std::move(std::thread(&KInterface::PingThread, this, onTimeout)); } #pragma warning(pop)
\ No newline at end of file |