Yes if the main thread needs to wait for them all to finish. Depending on
many factors and bazaar things, a join like that could wait for ever on a
hung thread to quit. To be safe, always use some reasonable timeout value
and fail back to thread abort if the thead will not join or is not
processing its signal to stop (i.e. your internal bool, etc.)

Signature
William Stacey, MVP
> I use the following to let the calling thread to go forward after the
> terminations of all the children threads.
[quoted text clipped - 4 lines]
>
> Is it a good strategy?