cpp-main / cpp-tbox

A complete Linux application software development tool library and runtime framework, aim at make C++ development easy.

Home Page:https://github.com/cpp-main/cpp-tbox

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

存在多次join()的风险

hevake opened this issue · comments

LogDbg("thread %u will exit, no more work.", thread_token.id());

如果恰好在cleanup()时,有一个线程刚完成了任务回来,那么它会委派一个run()动作,会存在多次join()的情况,导致程序无法正常退出。

image