From fbb5353a7cb9218ee8dc4b68ea5ac8dd61f4a9bc Mon Sep 17 00:00:00 2001 From: Charlie Fenton Date: Tue, 11 Sep 2007 23:21:58 +0000 Subject: [PATCH] Add a comment svn path=/trunk/boinc/; revision=13570 --- clientscr/mac_saver_module.cpp | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/clientscr/mac_saver_module.cpp b/clientscr/mac_saver_module.cpp index a5e548f2c9..52b6eaf2df 100755 --- a/clientscr/mac_saver_module.cpp +++ b/clientscr/mac_saver_module.cpp @@ -449,10 +449,13 @@ void closeBOINCSaver() { } if (rpc) { -#if 0 // OS X quits screensaver when energy saver puts display to - // sleep, but we want to keep crunching. So don't kill it. +#if 0 // OS X calls closeBOINCSaver() when energy saver puts display + // to sleep, but we want to keep crunching. So don't kill it. // Code in core client now quits on user activity if screen // saver launched it (2/28/07). + // Also, under sandbox security, screensaver doesn't have access + // to rpc password in gui_rpc_auth.cfg file, so core client won't + // accept rpc->quit from screensaver. if (CoreClientPID && (!wasAlreadyRunning)) { rpc->quit(); // Kill core client if we launched it }