From 76eb44b2d3201ecc70e3b0f0a44f585e60f4fae4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michael=20M=C3=BCller?= Date: Thu, 7 Jul 2022 09:53:27 +0200 Subject: [PATCH] Misspelled function Timer::usleep(). --- src/mx/memory/reclamation/epoch_manager.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mx/memory/reclamation/epoch_manager.cpp b/src/mx/memory/reclamation/epoch_manager.cpp index c9a51a8..9f0cf3a 100644 --- a/src/mx/memory/reclamation/epoch_manager.cpp +++ b/src/mx/memory/reclamation/epoch_manager.cpp @@ -40,7 +40,7 @@ void EpochManager::enter_epoch_periodically() // Wait some time until next epoch. //std::this_thread::sleep_for(config::epoch_interval()); // NOLINT: sleep_for seems to crash clang-tidy - _timer.u_sleep(config::epoch_interval().count()); + _timer.usleep(config::epoch_interval().count()); } }