From db251e4556fd13940d2491fa57b089b111a6db7c Mon Sep 17 00:00:00 2001 From: WSAL Evan Date: Mon, 24 Nov 2025 20:18:17 -0500 Subject: [PATCH] Sleep thread --- src/threading/ThreadPool.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/threading/ThreadPool.cpp b/src/threading/ThreadPool.cpp index b8ed38d..2beb757 100644 --- a/src/threading/ThreadPool.cpp +++ b/src/threading/ThreadPool.cpp @@ -39,6 +39,8 @@ namespace WillowVox { while (true) { + std::this_thread::sleep_for(std::chrono::milliseconds(5)); + std::function job; { /*m_mutexCondition.wait(lock, [this] {