From fac43f9889f500bcb62d830c030dec42fe791031 Mon Sep 17 00:00:00 2001 From: MarcoFalke Date: Thu, 28 May 2020 08:43:25 -0400 Subject: scheduler: Replace stop(true) with StopWhenDrained() This helps understanding the code at the call site without having to look up the name of the argument or the default value. --- src/scheduler.cpp | 12 ------------ 1 file changed, 12 deletions(-) (limited to 'src/scheduler.cpp') diff --git a/src/scheduler.cpp b/src/scheduler.cpp index 8f69bc31bf..c5d1788f77 100644 --- a/src/scheduler.cpp +++ b/src/scheduler.cpp @@ -68,18 +68,6 @@ void CScheduler::serviceQueue() newTaskScheduled.notify_one(); } -void CScheduler::stop(bool drain) -{ - { - LOCK(newTaskMutex); - if (drain) - stopWhenEmpty = true; - else - stopRequested = true; - } - newTaskScheduled.notify_all(); -} - void CScheduler::schedule(CScheduler::Function f, std::chrono::system_clock::time_point t) { { -- cgit v1.2.3