Make general delay 1ms

Just for my puny eyes to see.
This commit is contained in:
2025-12-12 04:07:43 +00:00
parent 2dbe3d0a58
commit 6ffa63f7ac

View File

@@ -18,7 +18,7 @@ namespace cw::worker
using cw::node::NodeAllocator; using cw::node::NodeAllocator;
using cw::state::State; using cw::state::State;
constexpr auto THREAD_PAUSE_DELAY = std::chrono::milliseconds(1000); 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: // Performs a single iteration which consists of the following:
// 1) pop an index off the iteration queue // 1) pop an index off the iteration queue