标签: python raspberry-pi python-multithreading
我有一个带有2个同时线程的程序,其中包含While True循环。 一段时间后,其中一个线程没有理由停止。 这是启动线程的代码。
t = Thread(target=bg, args=(1,)) t.start() t2 = Thread(target=vid, args=(1,)) t2.start()
有人可以帮我解决这个问题。
PS:我在树莓派上运行这个python程序