mirror of https://github.com/BOINC/boinc.git
*** empty log message ***
svn path=/trunk/boinc/; revision=4007
This commit is contained in:
parent
bcdbc8199c
commit
c575aa954c
|
@ -323,8 +323,8 @@ public:
|
|||
int calc_proj_size(PROJECT*);
|
||||
int calc_all_proj_size();
|
||||
int compute_share_disk_size(PROJECT*);
|
||||
int total_potentially_offender(PROJECT*, double &);
|
||||
int total_potentially_self(PROJECT*, double &);
|
||||
int total_potential_offender(PROJECT*, double &);
|
||||
int total_potential_self(PROJECT*, double &);
|
||||
double select_delete(PROJECT*, double, int);
|
||||
double delete_results(PROJECT*, double);
|
||||
double compute_resource_share(PROJECT*);
|
||||
|
|
|
@ -206,10 +206,10 @@ int CLIENT_STATE::make_scheduler_request(PROJECT* p, double work_req) {
|
|||
if (!anything_free(free)){
|
||||
fprintf(f, " <project_disk_free>%f</project_disk_free>\n", free);
|
||||
}
|
||||
if (!total_potentially_offender(p, possible)) {
|
||||
if (!total_potential_offender(p, possible)) {
|
||||
fprintf(f, " <potentially_free_offender>%f</potentially_free_offender>\n", possible);
|
||||
}
|
||||
if (!total_potentially_self(p, possible)) {
|
||||
if (!total_potential_self(p, possible)) {
|
||||
fprintf(f, " <potentially_free_self>%f</potentially_free_self>\n", possible);
|
||||
}
|
||||
if (strlen(p->code_sign_key)) {
|
||||
|
|
Loading…
Reference in New Issue