Skip to content

Commit

Permalink
scheduler: get app_version info for validator items
Browse files Browse the repository at this point in the history
svn path=/trunk/boinc/; revision=25658
  • Loading branch information
bema-aei committed May 9, 2012
1 parent 84a5385 commit 8b5b765
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
8 changes: 8 additions & 0 deletions checkin_notes
Original file line number Diff line number Diff line change
Expand Up @@ -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



4 changes: 4 additions & 0 deletions db/boinc_db.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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++]);
Expand Down Expand Up @@ -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, "
Expand Down

0 comments on commit 8b5b765

Please sign in to comment.