A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

[Python] 纯文本查看 复制代码
import ctypes
import inspect
from threading import Thread
import threading
import time


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)


def f1():
    while True:
        print("------------")
        time.sleep(1)


if __name__ == '__main__':
    t = Thread(target=f1, name="haha")
    t.start()
    for i in threading.enumerate():
        if i.getName() == "haha":
            stop_thread(i)
   

0 个回复

您需要登录后才可以回帖 登录 | 加入黑马