mirror of https://github.com/BOINC/boinc.git
*** empty log message ***
svn path=/trunk/boinc/; revision=10919
This commit is contained in:
parent
dbb16c9775
commit
103d5dbdcb
|
@ -8837,3 +8837,9 @@ Rom 14 Aug 2006
|
|||
- Tag for 5.5.13 release, all platforms
|
||||
boinc_core_release_5_5_13
|
||||
|
||||
Charlie 15 Aug 2006
|
||||
- Fix compiler warnings.
|
||||
|
||||
client/
|
||||
cpu_sched.C
|
||||
cs_scheduler.C
|
||||
|
|
|
@ -911,7 +911,7 @@ bool CLIENT_STATE::rr_simulation(double per_cpu_proc_rate, double rrs) {
|
|||
if (log_flags.rr_simulation) {
|
||||
msg_printf(0, MSG_INFO,
|
||||
"rr_simulation internal shortfall loop: idle %d, last active %d, active %d, shortfall %f: proj %s, last active %d, active %d, shortfall %f",
|
||||
nidle_cpus, last_active_size, active.size(), cpu_shortfall, pbest->project_name, last_proj_active_size, pbest->active.size(), pbest->cpu_shortfall);
|
||||
nidle_cpus, last_active_size, (int)active.size(), cpu_shortfall, pbest->project_name, last_proj_active_size, (int)pbest->active.size(), pbest->cpu_shortfall);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -625,7 +625,7 @@ bool CLIENT_STATE::compute_work_requests() {
|
|||
double prrs = potentially_runnable_resource_share();
|
||||
|
||||
PROJECT *pbest = NULL;
|
||||
double best_work;
|
||||
double best_work = 0;
|
||||
for (i=0; i<projects.size(); i++) {
|
||||
PROJECT *prospect = projects[i];
|
||||
double prospect_work = time_until_work_done(prospect, 0, prrs);
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/* Localized versions of Info.plist keys */
|
||||
|
||||
CFBundleName = "BOINC";
|
||||
CFBundleShortVersionString = "BOINC version 5.5.10";
|
||||
CFBundleGetInfoString = "BOINC version 5.5.10, Copyright 2006 University of California.";
|
||||
CFBundleShortVersionString = "BOINC version 5.5.13";
|
||||
CFBundleGetInfoString = "BOINC version 5.5.13, Copyright 2006 University of California.";
|
||||
|
|
|
@ -17,6 +17,6 @@
|
|||
<key>CFBundleSignature</key>
|
||||
<string>BNC!</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>5.5.10</string>
|
||||
<string>5.5.13</string>
|
||||
</dict>
|
||||
</plist>
|
||||
|
|
|
@ -15,6 +15,6 @@
|
|||
<key>CFBundleSignature</key>
|
||||
<string>????</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>5.5.10</string>
|
||||
<string>5.5.13</string>
|
||||
</dict>
|
||||
</plist>
|
||||
|
|
|
@ -15,6 +15,6 @@
|
|||
<key>CFBundleSignature</key>
|
||||
<string>????</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>5.5.10</string>
|
||||
<string>5.5.13</string>
|
||||
</dict>
|
||||
</plist>
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
<key>CFBundleSignature</key>
|
||||
<string>????</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>5.5.10</string>
|
||||
<string>5.5.13</string>
|
||||
<key>NSPrincipalClass</key>
|
||||
<string>BOINC_Saver_ModuleView</string>
|
||||
</dict>
|
||||
|
|
|
@ -15,6 +15,6 @@
|
|||
<key>CFBundleSignature</key>
|
||||
<string>????</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>5.5.10</string>
|
||||
<string>5.5.13</string>
|
||||
</dict>
|
||||
</plist>
|
||||
|
|
Loading…
Reference in New Issue