我有函数,它在线程中的LuaRuntime中运行一些未知代码,ex
def lua(code):
lua = LuaRuntime()
lua.execute(code)
def lua_in_thread(code):
t = threading.Thread(target = lua, args = (code,))
t.start()
return t
代码在哪里
a = 1
while a == 1 do end
有没有办法阻止线程?我读到了关于在不定式循环条件下检查变量的问题,但是代码未知,我无法保证会有这样的检查。