http://qs1969.pair.com?node_id=795016


in reply to Re: Signals in Strawberry Perl: Name or number?
in thread Signals in Strawberry Perl: Name or number?

On Windows XP, ActiveState 5.10 you will get:
Process completed with exit code 14

There is a problem with "kill", not with ALRM signal.

And SIG INT works also!

#!/usr/bin/perl use strict; use warnings; while (1) { sleep(1); } __END__ Terminating on signal SIGINT(2) Process completed with exit code 2
....This was CTRL-Break....