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
|
@ -8369,13 +8369,21 @@ David 2 Oct 2009
|
|||
error_numbers.h
|
||||
|
||||
David 2 Oct 2009
|
||||
- client: fix bug where if you change project "no CPU/NVIDIA/ATI"
|
||||
prefs and update, the change wouldn't take effect until client restart.
|
||||
- client: fix bug in enforcement of "no CPU/NVIDIA/ATI" prefs
|
||||
- client: fix bug where if you change project "no CPU/NVIDIA/ATI"
|
||||
prefs and update, the change wouldn't take effect until client restart.
|
||||
- client: fix bug in enforcement of "no CPU/NVIDIA/ATI" prefs
|
||||
|
||||
client/
|
||||
client_state.cpp
|
||||
cs_account.cpp
|
||||
work_fetch.cpp
|
||||
lib/
|
||||
coproc.cpp
|
||||
client/
|
||||
client_state.cpp
|
||||
cs_account.cpp
|
||||
work_fetch.cpp
|
||||
lib/
|
||||
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->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;
|
||||
}
|
||||
|
||||
|
|
|
@ -269,7 +269,7 @@ int CLIENT_STATE::parse_state_file() {
|
|||
}
|
||||
}
|
||||
if (avp->missing_coproc()) {
|
||||
msg_printf(project, MSG_INTERNAL_ERROR,
|
||||
msg_printf(project, MSG_INFO,
|
||||
"Application uses missing %s GPU",
|
||||
avp->ncudas?"NVIDIA":"ATI"
|
||||
);
|
||||
|
@ -353,7 +353,7 @@ int CLIENT_STATE::parse_state_file() {
|
|||
continue;
|
||||
}
|
||||
if (rp->avp->missing_coproc()) {
|
||||
msg_printf(project, MSG_INTERNAL_ERROR,
|
||||
msg_printf(project, MSG_INFO,
|
||||
"Missing coprocessor for task %s; aborting", rp->name
|
||||
);
|
||||
rp->abort_inactive(ERR_MISSING_COPROC);
|
||||
|
|
Loading…
Reference in New Issue