1 回答
TA贡献1852条经验 获得超7个赞
我认为这就是您要实现的目标:
import threading
from queue import Queue
import os
import time
timeout = 120 # [seconds]
timeout_start = time.time()
def OpenWSN ():
print( "OpenWSN:")
os.system("echo -OpenWSN-")
def Wireshark():
print( "Wireshark:")
os.system("echo -Wireshark-")
def wrapper1(func, queue):
queue.put(func())
def wrapper2(func, queue):
queue.put(func())
q = Queue()
threading.Thread(target=wrapper1, args=(OpenWSN, q)).start()
threading.Thread(target=wrapper2, args=(Wireshark, q)).start()
cv = threading.Condition()
cv.acquire()
cv.wait( timeout )
print ("***************** End Simulation *************************")
print (" Simulation Time: {0}s".format( time.time() - timeout_start) )
os.system("echo -exit-")
这会产生以下输出:
C:\temp\StackExchange\StopRunningThread>python -B stop-running-thread.py
OpenWSN:
Wireshark:
-OpenWSN-
-Wireshark-
***************** End Simulation *************************
Simulation Time: 120.04460144042969s
-exit-
那里发生了什么 - 您正在启动两个线程,每个线程在系统中启动单独的进程。在上述线程启动后,您返回主线程,分配一个“锁”并等待此锁发出信号或超时。在这种特殊情况下,没有人发出锁定信号,因此完成应用程序的唯一机会是等待超时发生。我会扩展您的应用程序,它会在每个线程函数中发出锁定信号,因此只有当两个线程函数都终止时,我们才能终止主线程。但这不是你问题的一部分,所以我假设你可以不发信号就离开。
添加回答
举报