代码优先:
'''this is main structure of my program'''
from twisted.web import http
from twisted.protocols import basic
import threading
threadstop = False #thread trigger,to be done
class MyThread(threading.Thread):
def __init__(self):
threading.Thread.__init__(self)
self.start()
def run(self):
while True:
if threadstop:
return
dosomething()
'''def some function'''
if __name__ == '__main__':
from twisted.internet import reactor
t = MyThread()
reactor.listenTCP(serverport,myHttpFactory())
reactor.run()
作为我的第一个多线程程序,我感到高兴它按预期工作。但现在我发现我无法控制它。如果我在前面运行它,Control + C只能停止主进程,我仍然可以在进程列表中找到它;如果我在后台运行它,我必须使用kill -9 pid
来阻止它。我想知道是否有一种方法可以通过触发变量控制子线程,或者更好的方法来阻止除kill -9
以外的整个过程。