cicbaba has asked for the wisdom of the Perl Monks concerning the following question:
# main program $thr1=new threads \&sub_name; $thr2=new threads \&sub_name; $thr3=new threads \&sub_name; $thr4=new threads \&sub_name; # threaded subroutine sub sub_name{ print ("\nIn the thread!\n"); # here I need help to join this thread after the print }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Threads in perl
by BrowserUk (Patriarch) on Oct 08, 2003 at 10:38 UTC | |
|
Re: Threads in perl
by Preceptor (Deacon) on Oct 09, 2003 at 09:00 UTC |