*** empty log message ***

svn path=/trunk/boinc/; revision=9260
This commit is contained in:
David Anderson 2006-01-17 22:59:23 +00:00
parent 45fc5016e5
commit 3cf73c01de
3 changed files with 4 additions and 4 deletions

View File

@ -392,7 +392,7 @@ bool CLIENT_STATE::cpu_benchmarks_poll() {
msg_printf(NULL, MSG_INFO, "Benchmark results:");
msg_printf(NULL, MSG_INFO, " Number of CPUs: %d", ncpus);
msg_printf(
NULL, MSG_INFO, " %.0f double precision MIPS (Whetstone) per CPU",
NULL, MSG_INFO, " %.0f floating point MIPS (Whetstone) per CPU",
host_info.p_fpops/1e6
);
msg_printf(

View File

@ -143,7 +143,7 @@ int PERS_FILE_XFER::start_xfer() {
}
if (log_flags.file_xfer) {
msg_printf(
fip->project, MSG_INFO, "Started %s of %s",
fip->project, MSG_INFO, "Started %s of file %s",
(is_upload ? "upload" : "download"), fip->name
);
}
@ -200,7 +200,7 @@ bool PERS_FILE_XFER::poll() {
fip->project->file_xfer_succeeded(is_upload);
if (log_flags.file_xfer) {
msg_printf(
fip->project, MSG_INFO, "Finished %s of %s",
fip->project, MSG_INFO, "Finished %s of file %s",
is_upload?"upload":"download", fip->name
);
if (fxp->xfer_speed < 0) {

View File

@ -211,7 +211,7 @@ int SCHEDULER_OP::start_rpc(PROJECT* p) {
switch (reason) {
case REASON_USER_REQ: why = "Requested by user"; break;
case REASON_NEED_WORK: why = "To fetch work"; break;
case REASON_RESULTS_DUE: why = "To report results"; break;
case REASON_RESULTS_DUE: why = "To report completed tasks"; break;
case REASON_TRICKLE_UP: why = "To send trickle-up message"; break;
default: why = "Unknown";
}