Explorar el Código

Update pidproxy.py to accept SIGQUIT and pass to children.

Hany Fahim hace 11 años
padre
commit
c237052593
Se han modificado 1 ficheros con 1 adiciones y 0 borrados
  1. 1 0
      supervisor/pidproxy.py

+ 1 - 0
supervisor/pidproxy.py

@@ -40,6 +40,7 @@ class PidProxy:
         signal.signal(signal.SIGINT, self.passtochild)
         signal.signal(signal.SIGUSR1, self.passtochild)
         signal.signal(signal.SIGUSR2, self.passtochild)
+        signal.signal(signal.SIGQUIT, self.passtochild)
         signal.signal(signal.SIGCHLD, self.reap)
 
     def reap(self, sig, frame):