multi interrupt ok
parent
09d874f08a
commit
6882b50e99
|
|
@ -45,7 +45,7 @@ class Manager(threading.Thread):
|
||||||
def __init__(self, outq):
|
def __init__(self, outq):
|
||||||
threading.Thread.__init__(self)
|
threading.Thread.__init__(self)
|
||||||
self.outq = outq
|
self.outq = outq
|
||||||
inq = queue.Queue(maxsize=1)
|
inq = queue.Queue()
|
||||||
def catcher(sig, frame):
|
def catcher(sig, frame):
|
||||||
inq.put(None)
|
inq.put(None)
|
||||||
self.inq = inq
|
self.inq = inq
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue