I don't have Math::GMP, so I haven't checked whether any of this translates to that modulePity ... that's the one I'm most interested in :-)
Given that the following script works fine:
#!perl -slw
use Math::GMP;
my $ret = Math::GMP->new('123' x 11);
print Math::GMP::get_str_gmp($ret, 10);
__END__
C:\_32\pscrpt\threads>perl gmp2.pl
123123123123123123123123123123123
if Math::GMP were threadsafe, would you expect that the following also outputs the same:
#!perl -slw
use threads;
use Math::GMP;
sub t1 {
my $mbi = Math::GMP->new($_[0]);
return $mbi;
}
my $th1 = threads->new(\&t1, '123' x 11);
my $ret1 = $th1->join;
print Math::GMP::get_str_gmp($ret1, 10);
(It doesn't - it just segfaults.) Does that therefore prove that Math::GMP is not threadsafe ? - or is there yet a possible rendition that may prove fruitful ?
Cheers,
Rob
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
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, details, 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, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
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.