首页 > 编程语言 > 详细

python 强制关闭线程

时间:2021-09-01 14:04:14      阅读:15      评论:0      收藏:0      [点我收藏+]
import threading
import time
import inspect
import ctypes


def _async_raise(tid, exctype):
    """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")


def stop_thread(thread):
    _async_raise(thread.ident, SystemExit)


class TestThread(threading.Thread):
    def run(self):
        print("线程开始")
        while True:
            time.sleep(0.1)
            print("线程 进行中")


if __name__ == "__main__":
    t = TestThread()
    t.start()  # 开启启动

    time.sleep(2)  # 等待线程进行2秒时间
    stop_thread(t)  # 结束线程 调用函数即可
    print("线程 结束")

亲手可测已用于项目

python 强制关闭线程

原文:https://www.cnblogs.com/xiongsheng/p/15210918.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!