From 6ffa63f7ac7324ca72080229c3135d00389eaa3b Mon Sep 17 00:00:00 2001 From: Aryadev Chavali Date: Fri, 12 Dec 2025 04:07:43 +0000 Subject: [PATCH] Make general delay 1ms Just for my puny eyes to see. --- src/worker.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/worker.hpp b/src/worker.hpp index cae2bbd..3f6d38a 100644 --- a/src/worker.hpp +++ b/src/worker.hpp @@ -18,7 +18,7 @@ namespace cw::worker using cw::node::NodeAllocator; using cw::state::State; constexpr auto THREAD_PAUSE_DELAY = std::chrono::milliseconds(1000); - constexpr auto THREAD_GENERAL_DELAY = std::chrono::milliseconds(10); + constexpr auto THREAD_GENERAL_DELAY = std::chrono::milliseconds(1); // Performs a single iteration which consists of the following: // 1) pop an index off the iteration queue