*** empty log message ***

svn path=/trunk/boinc/; revision=10648
This commit is contained in:
David Anderson 2006-07-13 15:26:41 +00:00
parent c322094210
commit c8356d9ad3
2 changed files with 8 additions and 0 deletions

View File

@ -7527,3 +7527,9 @@ David 12 July 2006
cpu_sched.C
cs_apps.C
cs_scheduler.C
David 13 July 2006
- core client: adjust_debts() returns if elapsed time < 1
client/
cpu_sched.C

View File

@ -208,6 +208,8 @@ void CLIENT_STATE::adjust_debts() {
double share_frac;
double wall_cpu_time = gstate.now - adjust_debts_last_time;
if (wall_cpu_time < 1) return;
// Total up total and per-project "wall CPU" since last CPU reschedule.
// "Wall CPU" is the wall time during which a task was
// runnable (at the OS level).