----- Original Message ----- 
From: "SkyBlueshoes" <[EMAIL PROTECTED]>
To: <[email protected]>
Sent: Sunday, May 07, 2006 4:38 PM
Subject: Catch ctrl-c


> I've tried to catch control-c using:
>     $SIG{QUIT} = \&got_sig_quit;

Try catching it with:

      $SIG{INT} = \&got_sig_int;

> Yet, my sub never gets executed, it's like the signal is being ignored.
>
> I'm using Activestate's Perl version v5.8.8 built for
> MSWin32-x86-multi-thread Binary build 816 [255195] provided by ActiveState
>

ActiveState recommends that you *not* use build 816 as it was a bad build -
best to update to build 817.

Cheers,
Rob

_______________________________________________
Perl-Win32-Users mailing list
[email protected]
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs

Reply via email to