*** empty log message ***

svn path=/trunk/boinc/; revision=4132
This commit is contained in:
Jeff Cobb 2004-08-31 23:45:07 +00:00
parent c1b1b1435e
commit 8f82cea5fd
2 changed files with 8 additions and 1 deletions

View File

@ -16820,3 +16820,10 @@ David 31 Aug 2004
main.C
sched_send.C
sched_shmem.h
Jeff 31 Aug 2004
- limit workunit enumeration in the assimilator to 1000.
sched/
assimilator.C

View File

@ -57,7 +57,7 @@ bool do_pass(APP& app) {
check_stop_daemons();
sprintf(buf, "where appid=%d and assimilate_state=%d", app.id, ASSIMILATE_READY);
sprintf(buf, "where appid=%d and assimilate_state=%d limit 1000", app.id, ASSIMILATE_READY);
while (!wu.enumerate(buf)) {
vector<RESULT> results; // must be inside while()!
did_something = true;