Re: DESTROYing shared objects, finally

2003-10-29 Thread Mike Pomraning
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

Re: Alarm Clock Bug w/ithreads

2003-10-29 Thread Elizabeth Mattijsen
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

Re: Alarm Clock Bug w/ithreads

2003-10-29 Thread Steve Schein
> 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

Re: Alarm Clock Bug w/ithreads

2003-10-29 Thread Elizabeth Mattijsen
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