*** empty log message ***

svn path=/trunk/boinc/; revision=2385
This commit is contained in:
David Anderson 2003-10-01 04:31:05 +00:00
parent 74eba475cc
commit 4545637530
3 changed files with 8 additions and 2 deletions

View File

@ -236,7 +236,7 @@ struct RESULT {
bool got_server_ack; bool got_server_ack;
// we're received the ack for this result from the server // we're received the ack for this result from the server
double final_cpu_time; double final_cpu_time;
int state; // state of this result, see above int state; // state of this result, see lib/result_state.h
int exit_status; // return value from the application int exit_status; // return value from the application
int signal; // the signal caught by the active_task, int signal; // the signal caught by the active_task,
// defined only if active_task_state is PROCESS_SIGNALED // defined only if active_task_state is PROCESS_SIGNALED

View File

@ -160,11 +160,15 @@ int SCHEDULER_OP::set_min_rpc_time(PROJECT* p) {
return 0; return 0;
} }
// Back off on the scheduler and output an error msg if needed // Back off contacting scheduler and output an error msg if needed
// //
void SCHEDULER_OP::backoff(PROJECT* p, char *error_msg ) { void SCHEDULER_OP::backoff(PROJECT* p, char *error_msg ) {
msg_printf(p, MSG_ERROR, error_msg); msg_printf(p, MSG_ERROR, error_msg);
// Don't back off more if already backed off
//
if (p->min_rpc_time > 0) return;
if (p->master_fetch_failures >= gstate.master_fetch_retry_cap) { if (p->master_fetch_failures >= gstate.master_fetch_retry_cap) {
p->master_url_fetch_pending = true; p->master_url_fetch_pending = true;
} else { } else {

2
todo
View File

@ -1,3 +1,5 @@
Don't render graphics if minimized
------------------------
DON'T ADD ANYTHING TO HERE. USE THE TASKBASE INSTEAD. DON'T ADD ANYTHING TO HERE. USE THE TASKBASE INSTEAD.
encrypt IDs in URLs (e.g. host) encrypt IDs in URLs (e.g. host)