mirror of https://github.com/BOINC/boinc.git
*** empty log message ***
svn path=/trunk/boinc/; revision=9158
This commit is contained in:
parent
c3b2d71261
commit
03cf1a9ae8
|
@ -14846,3 +14846,10 @@ David 28 Dec 2005
|
||||||
|
|
||||||
client/
|
client/
|
||||||
gui_rpc_server_ops.C
|
gui_rpc_server_ops.C
|
||||||
|
|
||||||
|
David 28 Dec 2005
|
||||||
|
- core client: avoid divide by zero error if no projects
|
||||||
|
(from Steven Schweda)
|
||||||
|
|
||||||
|
client/
|
||||||
|
cs_apps.C
|
||||||
|
|
|
@ -486,6 +486,8 @@ void CLIENT_STATE::adjust_debts() {
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (nprojects==0) return;
|
||||||
|
|
||||||
// long-term debt:
|
// long-term debt:
|
||||||
// normalize so mean is zero,
|
// normalize so mean is zero,
|
||||||
// short-term debt:
|
// short-term debt:
|
||||||
|
|
|
@ -162,6 +162,7 @@ show_name("Kevin Reed");
|
||||||
show_name("Thomas Richard");
|
show_name("Thomas Richard");
|
||||||
show_name("Nikolay Saharov");
|
show_name("Nikolay Saharov");
|
||||||
show_name("Alex A. dos Santos");
|
show_name("Alex A. dos Santos");
|
||||||
|
show_name("Steven Schweda");
|
||||||
show_name("Jens Seidler");
|
show_name("Jens Seidler");
|
||||||
show_name("Peter Smithson");
|
show_name("Peter Smithson");
|
||||||
show_name("Christian Søttrup");
|
show_name("Christian Søttrup");
|
||||||
|
|
Loading…
Reference in New Issue