From 54a7f73e50cda903a931abe3137107f707180794 Mon Sep 17 00:00:00 2001 From: KimLS Date: Fri, 5 Apr 2019 20:36:33 -0700 Subject: [PATCH] Change sleep duration to 1ms from 1us --- common/net/eqstream_concurrent.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/net/eqstream_concurrent.cpp b/common/net/eqstream_concurrent.cpp index b99b36b4b..0212eceae 100644 --- a/common/net/eqstream_concurrent.cpp +++ b/common/net/eqstream_concurrent.cpp @@ -85,7 +85,7 @@ void EQ::Net::ConcurrentEQStreamManager::_BackgroundThread() { while (true == _impl->background_running) { loop.Process(); - std::this_thread::sleep_for(std::chrono::microseconds(1)); + Sleep(1); } _impl->background_loop_timer.release();