当前位置: 移动技术网 > IT编程>脚本编程>Python > 在python中实现强制关闭线程的示例

在python中实现强制关闭线程的示例

2019年03月21日  | 移动技术网IT编程  | 我要评论

如下所示:

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
   "begin"
   while true:
     time.sleep(0.1)
   print('end')


if __name__ == "__main__":
  t = testthread()
  t.start()
  time.sleep(1)
  stop_thread(t)
  print('stoped') 

以上这篇在python中实现强制关闭线程的示例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持移动技术网。

如对本文有疑问, 点击进行留言回复!!

相关文章:

验证码:
移动技术网