Re: Can't Stop Process On Windows

2005-04-13 Thread Dan
On Tue, 12 Apr 2005 06:53:04 -0600, Dave Brueck <[EMAIL PROTECTED]> wrote: >Are you calling select with a long timeout? An alternative would be to call >select with a much shorter timeout, but call it multiple times from a loop. That seems to have fixed the problem. Changed it from no timeout

Re: Can't Stop Process On Windows

2005-04-12 Thread Dave Brueck
Dan wrote: I have a python script running under Windows XP that I need to terminate from the keyboard. A control-c works fine under Linux, but not under Windows. I'm pretty sure that the culprit is 'select' that I'm using to multiplex socket i/o, which seems to be blocking the keyboard interrupt.

Can't Stop Process On Windows

2005-04-11 Thread Dan
I have a python script running under Windows XP that I need to terminate from the keyboard. A control-c works fine under Linux, but not under Windows. I'm pretty sure that the culprit is 'select' that I'm using to multiplex socket i/o, which seems to be blocking the keyboard interrupt. Is there