X-Git-Url: https://arthur.barton.de/cgi-bin/gitweb.cgi?p=bup.git;a=blobdiff_plain;f=main.py;h=45a0e8a14ae30b62013d0fe187ff94f0348c35b2;hp=3554179d4c5a5272b2c6ec2960443fc528a30ab5;hb=refs%2Fheads%2Funused-variable-do_bloom;hpb=847f8b5d2037c80e2da40bae011cc847f660d8f3 diff --git a/main.py b/main.py index 3554179..45a0e8a 100755 --- a/main.py +++ b/main.py @@ -151,19 +151,29 @@ else: outf = None errf = None +ret = 95 +p = None +forward_signals = True -class SigException(Exception): - def __init__(self, signum): - self.signum = signum - Exception.__init__(self, 'signal %d received' % signum) def handler(signum, frame): - raise SigException(signum) + debug1('\nbup: signal %d received\n' % signum) + if not p or not forward_signals: + return + if signum != signal.SIGTSTP: + os.kill(p.pid, signum) + else: # SIGTSTP: stop the child, then ourselves. + os.kill(p.pid, signal.SIGSTOP) + signal.signal(signal.SIGTSTP, signal.SIG_DFL) + os.kill(os.getpid(), signal.SIGTSTP) + # Back from suspend -- reestablish the handler. + signal.signal(signal.SIGTSTP, handler) + ret = 94 signal.signal(signal.SIGTERM, handler) signal.signal(signal.SIGINT, handler) +signal.signal(signal.SIGTSTP, handler) +signal.signal(signal.SIGCONT, handler) -ret = 95 -p = None try: try: c = (do_profile and [sys.executable, '-m', 'cProfile'] or []) + subcmd @@ -176,13 +186,9 @@ try: while 1: # if we get a signal while waiting, we have to keep waiting, just # in case our child doesn't die. - try: - ret = p.wait() - break - except SigException, e: - log('\nbup: %s\n' % e) - os.kill(p.pid, e.signum) - ret = 94 + ret = p.wait() + forward_signals = False + break except OSError, e: log('%s: %s\n' % (subcmd[0], e)) ret = 98