in reply to Re^2: Abnormal exit with threads, LWP and the Perl Debugger
in thread Abnormal exit with threads, LWP and the Perl Debugger
Perhaps the simplest workaround -- and potentially quick way to trace the origin -- would be to satisfy the missing call:
## somewhere at the top of your application. BEGIN { package Devel; use Carp qw[ cluck ]; sub CLONE { cluck "Devel::CLONE called with args [ @_ ]"; } }
That ought to both get you passed the symptom and provide a full trace-back to the originating cause.
You might have to experiment with return values to prevent some error action being taken.
|
|---|