发布时间:2019-09-02 07:57:48编辑:auto阅读(1566)
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学习之路--hook(钩子原
下一篇: Python下载图片并保存本地的两种方式
47865
46431
37316
34764
29334
25994
24948
19969
19566
18053
5808°
6435°
5951°
5977°
7082°
5927°
5966°
6458°
6423°
7802°