From 44793a4fcdfa257a2a58fc76bd851543f0057ceb Mon Sep 17 00:00:00 2001 From: David Anderson Date: Thu, 21 Nov 2013 13:55:06 -0800 Subject: [PATCH] client: don't show "Resuming - CPU throttle" messages w/ cpu_sched flag --- client/app.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/app.cpp b/client/app.cpp index 276d10a552..4d31743d92 100644 --- a/client/app.cpp +++ b/client/app.cpp @@ -1045,7 +1045,7 @@ void* throttler(void*) { boinc_sleep(off); client_mutex.lock(); if (!gstate.tasks_suspended) { - gstate.resume_tasks(SUSPEND_REASON_CPU_THROTTLE); + gstate.active_tasks.unsuspend_all(); } gstate.tasks_throttled = false; client_mutex.unlock();