python多线程—终止子线程

总体思路

1、获取需要终止的子线程id
2、根据子线程id,终止子线程。

过程

  • 获取子线程id:
python 复制代码
import threading
Thread_id = threading.get_ident()  # 获取子线程的id值
  • 线程终止函数
python 复制代码
def async_raise(Thread_id, exctype):
    """raises the exception, performs cleanup if needed"""
    tid = ctypes.c_long(Thread_id)
    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")
  • 调用终止函数
python 复制代码
def stop_thread_func():
    async_raise(tid, SystemExit)

转自:https://blog.51cto.com/u_14224/6457768

相关推荐
山上三树1 天前
Qt Widget介绍
开发语言·qt
老歌老听老掉牙1 天前
Python星号参数深度解析
python·参数·星号
2401_884563241 天前
Python Lambda(匿名函数):简洁之道
jvm·数据库·python
weixin_387534221 天前
Ownership - Rust Hardcore Head to Toe
开发语言·后端·算法·rust
csdn_zhangchunfeng1 天前
Qt之slots和Q_SLOTS的区别
开发语言·qt
计算机安禾1 天前
【C语言程序设计】第35篇:文件的打开、关闭与读写操作
c语言·开发语言·c++·vscode·算法·visual studio code·visual studio
kishu_iOS&AI1 天前
Python - 链表浅析
开发语言·python·链表
m0_733612211 天前
C++20概念(Concepts)入门指南
开发语言·c++·算法
大连好光景1 天前
conda管理包还是pip管理包
python·conda·pip