mirror of https://github.com/BOINC/boinc.git
- client: if GPU is removed while jobs in progress,
don't show messages as internal errors. svn path=/trunk/boinc/; revision=19237
This commit is contained in:
parent
fb14ff8a7a
commit
c06c07cf14
|
@ -8379,3 +8379,11 @@ David 2 Oct 2009
|
||||||
work_fetch.cpp
|
work_fetch.cpp
|
||||||
lib/
|
lib/
|
||||||
coproc.cpp
|
coproc.cpp
|
||||||
|
|
||||||
|
David 2 Oct 2009
|
||||||
|
- client: if GPU is removed while jobs in progress,
|
||||||
|
don't show messages as internal errors.
|
||||||
|
|
||||||
|
client/
|
||||||
|
app.cpp
|
||||||
|
cs_statefile.cpp
|
||||||
|
|
|
@ -631,10 +631,6 @@ int ACTIVE_TASK::parse(MIOFILE& fin) {
|
||||||
|| result->ready_to_report
|
|| result->ready_to_report
|
||||||
|| result->state() != RESULT_FILES_DOWNLOADED
|
|| result->state() != RESULT_FILES_DOWNLOADED
|
||||||
) {
|
) {
|
||||||
msg_printf(project, MSG_INTERNAL_ERROR,
|
|
||||||
"State file error: result %s is in wrong state\n",
|
|
||||||
result_name
|
|
||||||
);
|
|
||||||
return ERR_BAD_RESULT_STATE;
|
return ERR_BAD_RESULT_STATE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -269,7 +269,7 @@ int CLIENT_STATE::parse_state_file() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (avp->missing_coproc()) {
|
if (avp->missing_coproc()) {
|
||||||
msg_printf(project, MSG_INTERNAL_ERROR,
|
msg_printf(project, MSG_INFO,
|
||||||
"Application uses missing %s GPU",
|
"Application uses missing %s GPU",
|
||||||
avp->ncudas?"NVIDIA":"ATI"
|
avp->ncudas?"NVIDIA":"ATI"
|
||||||
);
|
);
|
||||||
|
@ -353,7 +353,7 @@ int CLIENT_STATE::parse_state_file() {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
if (rp->avp->missing_coproc()) {
|
if (rp->avp->missing_coproc()) {
|
||||||
msg_printf(project, MSG_INTERNAL_ERROR,
|
msg_printf(project, MSG_INFO,
|
||||||
"Missing coprocessor for task %s; aborting", rp->name
|
"Missing coprocessor for task %s; aborting", rp->name
|
||||||
);
|
);
|
||||||
rp->abort_inactive(ERR_MISSING_COPROC);
|
rp->abort_inactive(ERR_MISSING_COPROC);
|
||||||
|
|
Loading…
Reference in New Issue