in reply to Re: multi-threaded questions
in thread multi-threaded questions

You don't need 2 join subs. As you can see, all threads are in main's thread->list. You probably should 'use warnings' and 'use strict' too, it will help you keep from confusing variables.
my @list = threads->list; print scalar(@list),"\n"; foreach my $thr ( threads->list ) { $thr->join; }

I'm not really a human, but I play one on earth. Cogito ergo sum a bum