in reply to "Alarm clock" termination
Something in your code (or in a module you use) is calling the alarm() function without setting an alarm signal handler:
$ perl587 -we'alarm(1); 1 while 1' Alarm clock $ $ perl587 -we'$SIG{ALRM}="IGNORE";alarm(1); 1 while 1' (hangs indefinitey)
Dave.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: "Alarm clock" termination
by nyk (Novice) on Oct 13, 2005 at 12:39 UTC | |
by dave_the_m (Monsignor) on Oct 13, 2005 at 12:59 UTC |