Open GoogleCodeExporter opened 9 years ago
We have
def run (args):
...
signal.signal(signal.SIGINT, gtk.main_quit)
def cleanup ():
SubProcess.finishAllSubprocesses()
atexit.register(cleanup)
...
In the end of Main.py
Adding support for SIGTERM is probably a simple matter of adding
signal.signal(signal.SIGTERM, gtk.main_quit)
After the SIGINT line.
Original comment by lobais
on 16 Nov 2010 at 5:45
Original comment by gbtami
on 4 Dec 2010 at 10:18
Original issue reported on code.google.com by
Michael....@gmail.com
on 16 Nov 2010 at 12:00