Re: Alarm Clock Bug w/ithreads
[email protected] (Elizabeth Mattijsen)
| Newsgroups | perl.ithreads |
|---|---|
| Message-ID | <p05111b01bbc53ae26ef5@[192.168.56.2]> |
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