We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
需要改为 if (m_bIsStarted ) { m_bIsEnd = true; join(); } m_bIsEnded初始状态为false,结束为true,都有可能导致不能正常退出线程
The text was updated successfully, but these errors were encountered:
#83
Sorry, something went wrong.
No branches or pull requests
checkpoint_sender.cpp
stop函数内部的条件
if (m_bIsStarted && ! m_bIsEnded)
{
m_bIsEnd = true;
join();
}
需要改为
if (m_bIsStarted )
{
m_bIsEnd = true;
join();
}
m_bIsEnded初始状态为false,结束为true,都有可能导致不能正常退出线程
The text was updated successfully, but these errors were encountered: