From 2a0c6427329da5f607dbf9e01417666e0fddad4a Mon Sep 17 00:00:00 2001 From: Rom Walton Date: Wed, 5 May 2004 19:30:51 +0000 Subject: [PATCH] *** empty log message *** svn path=/trunk/boinc/; revision=3349 --- client/main.C | 2 ++ 1 file changed, 2 insertions(+) diff --git a/client/main.C b/client/main.C index ae217dc0a5..58c22d5025 100644 --- a/client/main.C +++ b/client/main.C @@ -165,11 +165,13 @@ void quit_client() { void suspend_client() { msg_printf(NULL, MSG_INFO, "Suspending activity - user request"); + gstate.activities_suspended = true; gstate.active_tasks.suspend_all(); } void resume_client() { msg_printf(NULL, MSG_INFO, "Resuming activity - user request"); + gstate.activities_suspended = false; gstate.active_tasks.unsuspend_all(); }