本文实例为大家分享了python多线程下信号处理程序示例的具体代码,供大家参考,具体内容如下
下面是一个网上转载的实现思路,经过验证,发现是可行的,就记录下来。
思路
python多线程中要响应ctrl+c的信号以杀死整个进程,需要:
1.把所有子线程设为daemon;
2.使用isalive()函数判断所有子线程是否完成,而不是在主线程中用join()函数等待完成;
3.写一个响应ctrl+c信号的函数,修改全局变量,使得各子线程能够检测到,并正常退出。
源码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
#!/usr/bin/env python
#encoding: utf-8
#filename: signal_demo.py
import threading, signal
def do_job(i, step):
global exited
idx = i
while not exited:
if (idx < 10000000 ):
print 'thread[%d]: idx=%d' % (i, idx)
idx = idx + step
else :
break
if exited:
print 'receive a signal to exit, thread[%d] stop.' % i
else :
print 'thread[%d] complete.' % i
def sig_handler(sig, frame):
global exited
exited = true
print 'receive a signal %d, exited=%d' % (sig, exited)
def main():
#set signal handler
signal.signal(signal.sigterm, sig_handler)
signal.signal(signal.sigint, sig_handler)
pool = []
pool_size = 50
for i in range (pool_size):
t = threading.thread(target = do_job, args = (i, pool_size))
t.setdaemon(true)
pool.append(t)
t.start()
while 1 :
alive = false
for i in range (pool_size):
alive = alive or pool[i].isalive()
if alive = = true:
break
if not alive:
break
if __name__ = = '__main__' :
exited = false
main()
|
命令行运行
1
|
python signal_demo.py
|
截图
参考文献
python中用ctrl+c终止多线程程序的问题解决
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持服务器之家。
原文链接:https://blog.csdn.net/tao_627/article/details/46658721