diff --git a/_autosetup b/_autosetup index f22416002f..0546c0c2e2 100755 --- a/_autosetup +++ b/_autosetup @@ -2,18 +2,10 @@ ## $Id$ -# for solaris machines that don't have autoconf 2.57 or automake 1.7 installed: - # this file is only for bootstrapping the "Makefile.in" files and "Makefile" # files; you probably don't need to run this if the Makefile.in files were # correctly checked into the repository. -## need autoconf, automake, m4, ... from quarl's bin directory: -if [ `uname` = SunOS ]; then - PATH=/disks/philmor/a/users/quarl/local/Node-SOLARIS/bin:$PATH - export PATH -fi - if [ -d autom4te.cache ]; then /bin/rm -rf autom4te.cache fi diff --git a/checkin_notes b/checkin_notes index b635d256fc..0e73f5518b 100755 --- a/checkin_notes +++ b/checkin_notes @@ -11943,3 +11943,16 @@ Charlie 21 Sept 2005 lib/ mac_backtrace.C + +David 21 Sept 2005 + - when benchmarking, suspend running applications the normal way + (leave in memory or not, depending on general prefs) + rather than always removing from memory. + Note: there may already be suspended apps in memory, + so killing running apps is pointless. + - remove site-specific lines from _autosetup + + _autosetup + client/ + cs_prefs.C + diff --git a/client/cs_prefs.C b/client/cs_prefs.C index 2c49526833..68f51755fa 100644 --- a/client/cs_prefs.C +++ b/client/cs_prefs.C @@ -188,11 +188,7 @@ int CLIENT_STATE::suspend_activities(int reason) { s_reason += " - out of disk space - change global prefs"; } msg_printf(NULL, MSG_INFO, const_cast(s_reason.c_str())); - if (reason & SUSPEND_REASON_BENCHMARKS) { - active_tasks.suspend_all(false); - } else { - active_tasks.suspend_all(global_prefs.leave_apps_in_memory); - } + active_tasks.suspend_all(global_prefs.leave_apps_in_memory); pers_file_xfers->suspend(); return 0; } diff --git a/doc/boinc_dev.php b/doc/boinc_dev.php index 104cbd7f29..f1373ebd8d 100644 --- a/doc/boinc_dev.php +++ b/doc/boinc_dev.php @@ -74,7 +74,7 @@ Please check with davea at ssl.berkeley.edu before undertaking any of these.
Various implementation notes: -

Core client

+

Client