mirror of https://github.com/BOINC/boinc.git
scheduler: get app_version info for validator items
svn path=/trunk/boinc/; revision=25658
This commit is contained in:
parent
84a53855ad
commit
8b5b765bb7
|
@ -3743,3 +3743,11 @@ Bernd 8 May 2012
|
|||
sched/
|
||||
plan_class_spec.cpp
|
||||
|
||||
Bernd 9 May 2012
|
||||
- scheduler: get app_version info for validator items
|
||||
|
||||
db/
|
||||
boinc_db.cpp
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -1526,6 +1526,8 @@ void VALIDATOR_ITEM::parse(MYSQL_ROW& r) {
|
|||
res.sent_time = atoi(r[i++]);
|
||||
res.received_time = atoi(r[i++]);
|
||||
res.appid = atoi(r[i++]);
|
||||
res.app_version_id = atoi(r[i++]);
|
||||
res.app_version_num = atoi(r[i++]);
|
||||
res.elapsed_time = atof(r[i++]);
|
||||
res.flops_estimate = atof(r[i++]);
|
||||
res.app_version_id = atoi(r[i++]);
|
||||
|
@ -1587,6 +1589,8 @@ int DB_VALIDATOR_ITEM_SET::enumerate(
|
|||
" res.sent_time, "
|
||||
" res.received_time, "
|
||||
" res.appid, "
|
||||
" res.app_version_id, "
|
||||
" res.app_version_num, "
|
||||
" res.elapsed_time, "
|
||||
" res.flops_estimate, "
|
||||
" res.app_version_id, "
|
||||
|
|
Loading…
Reference in New Issue