in reply to Re^2: 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

I believe you have to set it before you start Perl, but I'm not positive. However, if Perl isn't performing a single long-running operation, but the signal never arrives, this isn't the solution. I don't know anything about signal handling on Windows.

  • Comment on Re^3: Need a reliable way to send SIGINT to a perl process on 5.8.8/windows XPpro

Replies are listed 'Best First'.
Re^4: Need a reliable way to send SIGINT to a perl process on 5.8.8/windows XPpro
by fwashbur (Sexton) on Mar 09, 2007 at 01:36 UTC
    Definitely not doing a long running operation, a short sleep in a while, so the signal should be able to get through the opcodes in the while. Windows signal handling is just bad I guess.