Don't join in Stop methods. THe decode and analysis thread may never get woken up from packetqueue. Leave it for the destructor.

This commit is contained in:
Isaac Connor
2024-10-26 13:33:26 -04:00
parent c51c287c01
commit 0d03266455
2 changed files with 2 additions and 2 deletions

View File

@@ -10,6 +10,7 @@ DecoderThread::DecoderThread(Monitor *monitor) :
DecoderThread::~DecoderThread() {
Stop();
if (thread_.joinable()) thread_.join();
}
void DecoderThread::Start() {
@@ -20,7 +21,6 @@ void DecoderThread::Start() {
void DecoderThread::Stop() {
terminate_ = true;
if (thread_.joinable()) thread_.join();
}
void DecoderThread::Run() {