in reply to Re: Signals in Strawberry Perl: Name or number?
in thread Signals in Strawberry Perl: Name or number?
There is a problem with "kill", not with ALRM signal.
And SIG INT works also!
....This was CTRL-Break....#!/usr/bin/perl use strict; use warnings; while (1) { sleep(1); } __END__ Terminating on signal SIGINT(2) Process completed with exit code 2
|
|---|