[Pybot-commits] CVS: pybot/pybot main.py,1.1.1.1,1.2
Brought to you by:
niemeyer
From: Gustavo N. <nie...@us...> - 2001-11-22 13:43:21
|
Update of /cvsroot/pybot/pybot/pybot In directory usw-pr-cvs1:/tmp/cvs-serv22743 Modified Files: main.py Log Message: Temporarily removed SIGQUIT handling since Aaron told us it doesn't work on Windows. Index: main.py =================================================================== RCS file: /cvsroot/pybot/pybot/pybot/main.py,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** main.py 2001/11/02 17:20:21 1.1.1.1 --- main.py 2001/11/22 13:43:17 1.2 *************** *** 33,37 **** self.reboot = 0 self.quit = 0 ! signal.signal(signal.SIGQUIT, self.signalhandler) signal.signal(signal.SIGTERM, self.signalhandler) --- 33,40 ---- self.reboot = 0 self.quit = 0 ! # Aaron told SIGQUIT is not available in Windows. We must figure ! # out which platforms it is available and what's the most clean ! # way to use it. ! # signal.signal(signal.SIGQUIT, self.signalhandler) signal.signal(signal.SIGTERM, self.signalhandler) |