On Thu, 23 Oct 2003, Mike Pomraning wrote:
> [] suggestions on how I might determine which DESTROY [of a shared,
> blessed ref] is the very last one?
Sorry to reply to my own post, but here's how I've attempted to identify the
last DESTROY of a shared object:
sub DESTROY {
return unles
At 07:49 -0800 10/29/03, Steve Schein wrote:
> Have you tried setting it to a real code ref rather than a name?
>$SIG{ALRM} = sub {};
>>> Hi Liz. How are things?
So so... ;-)
Early testing looks encouraging for the
patch above. Thank you. Do you know if Perl v5.8.1 resolves this issu
> Have you tried setting it to a real code ref rather than a name?
>
>$SIG{ALRM} = sub {};
>>> Hi Liz. How are things? Early testing looks encouraging for the
patch above. Thank you. Do you know if Perl v5.8.1 resolves this issue
with alarms?
Best regards and happy threading,
Steve
At 20:04 -0800 10/28/03, Steve Schein wrote:
$SIG{ALRM} = 'a' if @ARGV;
Have you tried setting it to a real code ref rather than a name?
$SIG{ALRM} = sub {};
Liz