in reply to Re^3: Multiple perl interpreters and Module::Runtime (&)
in thread Multiple perl interpreters and Module::Runtime
How does it crash?Sorry, I should have been more specific.
The program crashes with SEGFAULT after executing this line (Exporter.pm, line 64):
64: *{"$callpkg\::$_"} = \&{"$pkg\::$_"} foreach @_;
Indeed, you are right. However the expression \&{"$pkg\::$_"} entered into the perl debugger yields the same result - SEGFAULT crash.\&... would never do what &... does. \&... takes a reference to a subroutine while &... invokes a subroutine. So what &{"$pkg\::$_"} does is rather irrelevant. It is indeed unfortunate that Params::Classify::is_string() stupidly produces an endless recursive loop when not given any parameters. But that likely has nothing to do with your original problem.
I've been trying to find the part of the line 64 that causes problems - and it shows that the bad part is the expression \&{"$pkg\::$_"}. Perl somehow cannot correctly resolve the function Params::Classify::is_string.
My previous post followed with a GDB backtrace generated from the core dump of the crashed program. It shows where exactly the segfaulted.
Btw. have you tried that program? Does it work on your computer?
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^5: Multiple perl interpreters and Module::Runtime (XS--)
by tye (Sage) on Feb 08, 2011 at 15:02 UTC | |
by Anonymous Monk on Nov 28, 2011 at 12:40 UTC | |
by daneus (Initiate) on Feb 09, 2011 at 08:31 UTC |