Add Join() function

This commit is contained in:
Isaac Connor
2024-10-26 14:29:40 -04:00
parent 94c2816841
commit f131f78d34
4 changed files with 9 additions and 0 deletions

View File

@@ -23,6 +23,10 @@ void DecoderThread::Stop() {
terminate_ = true;
}
void DecoderThread::Join() {
if (thread_.joinable()) thread_.join();
}
void DecoderThread::Run() {
Debug(2, "DecoderThread::Run() for %d", monitor_->Id());