BoundedSemaphore挂在KeyboardInterrupt上的线程中 [英] BoundedSemaphore hangs in threads on KeyboardInterrupt

查看:82
本文介绍了BoundedSemaphore挂在KeyboardInterrupt上的线程中的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如果在尝试获取信号量时引发了KeyboardInterrupt,则尝试释放相同信号量对象的线程将无限期挂起.

If you raise a KeyboardInterrupt while trying to acquire a semaphore, the threads that also try to release the same semaphore object hang indefinitely.

代码:

import threading
import time

def worker(i, sema):
    time.sleep(2)
    print i, "finished"
    sema.release()


sema = threading.BoundedSemaphore(value=5)
threads = []
for x in xrange(100):
    sema.acquire()
    t = threading.Thread(target=worker, args=(x, sema))
    t.start()
    threads.append(t)

启动它,然后在运行时启动^ C.它会挂起并且永远不会退出.

Start this up and then ^C as it is running. It will hang and never exit.

0 finished
3 finished
1 finished
2 finished
4 finished
^C5 finished
Traceback (most recent call last):
  File "/tmp/proof.py", line 15, in <module>
    sema.acquire()
  File "/System/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/threading.py", line 290, in acquire
    self.__cond.wait()
  File "/System/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/threading.py", line 214, in wait
    waiter.acquire()
KeyboardInterrupt
6 finished
7 finished
8 finished
9 finished

如何让最后几个线程自然死亡然后正常退出? (如果您不尝试打断它,它会这样做)

How can I get it to let the last few threads die natural deaths and then exit normally? (which it does if you don't try to interrupt it)

推荐答案

您可以使用信号模块设置一个标志,该标志告诉主线程停止处理:

You can use the signal module to set a flag that tells the main thread to stop processing:

import threading
import time
import signal
import sys

sigint = False

def sighandler(num, frame):
  global sigint
  sigint = True

def worker(i, sema):
  time.sleep(2)
  print i, "finished"
  sema.release()

signal.signal(signal.SIGINT, sighandler)
sema = threading.BoundedSemaphore(value=5)
threads = []
for x in xrange(100):
  sema.acquire()
  if sigint:
    sys.exit()
  t = threading.Thread(target=worker, args=(x, sema))
  t.start()
  t.join() 
  threads.append(t)

这篇关于BoundedSemaphore挂在KeyboardInterrupt上的线程中的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆