*** empty log message ***

svn path=/trunk/boinc/; revision=3636
This commit is contained in:
Rom Walton 2004-06-17 18:29:32 +00:00
parent aa511e5773
commit 9d2178a889
2 changed files with 7 additions and 5 deletions

View File

@ -13866,3 +13866,9 @@ David 17 June 2004
client/
hostinfo_network.C
Rom June 16 2004
- Enable the low-water mark for the work queue again.
client/
cs_scheduler.C

View File

@ -432,11 +432,7 @@ bool CLIENT_STATE::scheduler_rpc_poll() {
if (exit_when_idle && contacted_sched_server) {
should_get_work = false;
} else {
// TODO: the following is a kludge to prevent
// repeated work requests, but it defeats the
// work_buf_min concept
//
//below_work_buf_min = (current_work_buf_days() <= global_prefs.work_buf_min_days);
below_work_buf_min = (current_work_buf_days() <= global_prefs.work_buf_min_days);
current_work_buf_days(work_buf_days, nactive_results);
below_work_buf_min = nactive_results < host_info.p_ncpus;
should_get_work = below_work_buf_min && some_project_rpc_ok();