in reply to Re: Need a reliable way to send SIGINT to a perl process on 5.8.8/windows XPpro
in thread Need a reliable way to send SIGINT to a perl process on 5.8.8/windows XPpro

Kudos to you!
kill 21, $pid;
works!, I just assigned $SIG{BREAK} to the same handler as $SIG{INT}. I know that manual CTRL-C gets me into the interrupt handler for $SIG{INT}. So now I can just use BREAK to test the handler.
Thank you!!