Hi,

I have tried to run the following test script under perl 5.8.8 (Windows
2000) but I cannot stop it using control+break or control+C.
I have no problem when using older versions of perl (5.8.7 or 5.8.6).

What can I do? Just switch back to 5.8.7?

Thank you.

use strict;

my $exit;
$SIG{INT} = $SIG{BREAK} = $SIG{HUP} = sub {$exit++};

while(!$exit) {
sleep 1;
}

Teddy

_______________________________________________
ActivePerl mailing list
[email protected]
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs

Reply via email to