F
Franz
I use the following to let the calling thread to go forward after the
terminations of all the children threads.
for (int i=0; i<threadCount; ++i) {
threads.Join();
}
Is it a good strategy?
terminations of all the children threads.
for (int i=0; i<threadCount; ++i) {
threads.Join();
}
Is it a good strategy?