[Zope3-dev] server restarts

Guido van Rossum guido@python.org
Mon, 12 May 2003 11:28:27 -0400


> in unix control-c sends a signal to the process . I dont think windows 
> supports the same signaling  semantics on a ctrl-c as linux.

Correct, Windows ^C is a hack.

> looks like ctrl break does the same thing as ctrl c.

No; ^Break kills immediately, ^C usually is passed to the
application's SIGINT handler (which *is* supported, albeit using a
very different mechanism than on Unix/Linux).

--Guido van Rossum (home page: http://www.python.org/~guido/)