概述
通过给线程里面抛异常来强制退出线程,以下程序为开启一个线程打印2秒的字符后强制线程结束
import serial
import threading
import time
import binascii
import struct
import ctypes
import inspect
def _async_raise(tid, exctype):
# todo 强制退出线程 忽略掉报错
try:
"""raises the exception, performs cleanup if needed"""
tid = ctypes.c_long(tid)
if not inspect.isclass(exctype):
exctype = type(exctype)
res = ctypes.pythonapi.PyThreadState_SetAsyncExc(tid, ctypes.py_object(exctype))
if res == 0:
raise ValueError("invalid thread id")
elif res != 1:
# """if it returns a number greater than one, you're in trouble,
# and you should call it again with exc=NULL to revert the effect"""
ctypes.pythonapi.PyThreadState_SetAsyncExc(tid, None)
raise SystemError("PyThreadState_SetAsyncExc failed")
except:
pass
def init_serial_thread(a):
while True:
print(a)
a = 120
t0 = threading.Thread(target=init_serial_thread, args=(a,))
t0.start()
time.sleep(2)
print("begin exit")
_async_raise(t0.ident, SystemExit)
t0.join()
print("exit")
最后
以上就是凶狠小猫咪为你收集整理的一个强制退出线程的例子python的全部内容,希望文章能够帮你解决一个强制退出线程的例子python所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复