在子线程使用,关闭程序时,软件不会正常退出
Opened this issue · 5 comments
XuHongYun-ChuJian commented
XuHongYun-ChuJian commented
XuHongYun-ChuJian commented
heylogt commented
同样的问题,可定位为thread_local引起,更换为const、或直接局部变量static都可以。
只是未明白thread_local引起的原因。调试时、该线程提起结束了?
XuHongYun-ChuJian commented
同样的问题,可定位为thread_local引起,更换为const、或直接局部变量static都可以。 只是未明白thread_local引起的原因。调试时、该线程提起结束了?
https://sourceforge.net/p/mingw-w64/bugs/527/ thread_local在mingw中有问题。对于 non-trivial objects
heylogt commented
同样的问题,可定位为thread_local引起,更换为const、或直接局部变量static都可以。 只是未明白thread_local引起的原因。调试时、该线程提起结束了?
https://sourceforge.net/p/mingw-w64/bugs/527/ thread_local在mingw中有问题。对于 non-trivial objects
谢谢解答。