multi interrupt ok

master
bel 2023-03-29 20:11:43 -06:00
parent 09d874f08a
commit 6882b50e99
1 changed files with 1 additions and 1 deletions

View File

@ -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