Change sleep duration to 1ms from 1us

This commit is contained in:
KimLS
2019-04-05 20:36:33 -07:00
parent 84630ce228
commit 54a7f73e50
+1 -1
View File
@@ -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();