Update of /cvsroot/compbench/CompBenchmarks++/libcompbenchmarks/Plan
In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv28523
Modified Files:
Plan.cpp
Log Message:
Broadcast stop (parameter introduced).
Changes in PlanBatch's constructor.
Index: Plan.cpp
===================================================================
RCS file: /cvsroot/compbench/CompBenchmarks++/libcompbenchmarks/Plan/Plan.cpp,v
retrieving revision 1.13
retrieving revision 1.14
diff -C2 -d -r1.13 -r1.14
*** Plan.cpp 13 Jun 2007 18:11:37 -0000 1.13
--- Plan.cpp 31 Jul 2007 17:25:01 -0000 1.14
***************
*** 246,250 ****
for(i=0;i<n;i++) {
! getBatch(i)->stop();
}
--- 246,250 ----
for(i=0;i<n;i++) {
! getBatch(i)->stop(0);
}
***************
*** 325,329 ****
tmp=PBs->getNode(i);
if (tmp->Name()=="plan-batch") {
! pb=new PlanBatch("");
pb->restore(tmp);
planBatch.push_back(pb);
--- 325,329 ----
tmp=PBs->getNode(i);
if (tmp->Name()=="plan-batch") {
! pb=new PlanBatch(this, "");
pb->restore(tmp);
planBatch.push_back(pb);
|