DavidLiu 3 月之前
父节点
当前提交
b45d1ed553
共有 1 个文件被更改,包括 9 次插入9 次删除
  1. 9 9
      src/core/voip/bot.py

+ 9 - 9
src/core/voip/bot.py

@@ -741,15 +741,15 @@ class BotAgent:
         time.sleep(1)
         self.logger.info("destroy, come in 33333")
 
-        if not self.pjsua_thread.is_alive():
-            self.logger.info("destroy, pre thread already stopped")
-            return
-        ident = self.pjsua_thread.ident
-        thread_id = ctypes.pythonapi.PyThreadState_SetAsyncExc
-        res = ctypes.pythonapi.PyThreadState_SetAsyncExc(
-            ctypes.c_long(ident), ctypes.py_object(SystemExit)
-        )
-        self.logger.info("destroy, ident=%s, thread_id=%s, res=%s", ident, thread_id, res)
+        # if not self.pjsua_thread.is_alive():
+        #     self.logger.info("destroy, pre thread already stopped")
+        #     return
+        # ident = self.pjsua_thread.ident
+        # thread_id = ctypes.pythonapi.PyThreadState_SetAsyncExc
+        # res = ctypes.pythonapi.PyThreadState_SetAsyncExc(
+        #     ctypes.c_long(ident), ctypes.py_object(SystemExit)
+        # )
+        # self.logger.info("destroy, ident=%s, thread_id=%s, res=%s", ident, thread_id, res)
         # if res == 0:
         #     raise ValueError("Invalid thread ID")
         # elif res > 1: