在我得到结果后,我需要停止我在 python 中通过 Popen 发出的服务(在另一个线程的后台运行),但是以下方法失败了(只是ping
为了解释而使用):
class sample(threading.Thread):
def __init__(self, command, queue):
threading.Thread.__init__(self)
self.command = command;
self.queue = queue
def run(self):
result = Popen(self.command, shell=True, stdout=PIPE, stderr=STDOUT)
while True:
output = result.stdout.readline()
if not self.queue.empty():
result.kill()
break
if output != "":
print output
else:
break
def main():
q = Queue()
command = sample("ping 127.0.0.1", q)
command.start()
time.sleep(10)
q.put("stop!")
command.join()
if __name__ == "__main__":
main()
运行上述程序后,当我 pgrep for 时ping
,它仍然存在。如何杀死 Popen 打开的子进程?谢谢。
PS:我也试过result.terminate(),但也没有真正解决问题。