Hello dear Monks
I'm trying to convert the following :
#!/usr/bin/perl
use strict;
use warnings;
use threads;
sub func {
print "doing job ... \n";
sleep 1;
}
my @threads;
foreach ( 1..2 ) {
print "launching job\n";
push( @threads , threads->new( \&func ));
}
foreach my $thread ( threads->list() ) {
my @command_output = $thread->join ;
print "job done\n";
}
to something like
package myTest;
sub new {
my $item={};
bless $item;
return $item;
}
sub myTestFunc {
my $item = shift;
print "doing job ... \n";
}
1;
#!/usr/bin/perl
use strict;
use warnings;
use threads;
use myTest;
my @threads;
foreach ( 1..2 ) {
print "launching job\n";
my $test = myTest->new();
push( @threads , threads->new( $test->myTestFunc ));
}
foreach my $thread ( @threads ) {
my @command_output = $thread->join ;
print "job done\n";
}
this produces
Thread 1 terminated abnormally: Undefined subroutine &main::1
caused by
$test->myTestFunc in threads->new( $test->myTestFunc ))
I understand that threads->new() is excepting a function ref (right ?)
But this kind of stuff must be possible !?
Thanks and have a nice day.
"There is only one good, namely knowledge, and only one evil, namely ignorance." Socrates
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
Outside of code tags, you may need to use entities for some characters:
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.
|
|