Hello,

I create a thread group and run the group with join_all(). My code shows like:

for(i=0; i < runs; ++i) {
     threadgoup.join_all();
     do something with the results
}

So I run the thread group n times. Is this the correct way or can I call join_all only once on the group?

Thanks

PHil