From c1d1240d11e063b7698d36755f338384ce5419e4 Mon Sep 17 00:00:00 2001 From: Richard Fuchs Date: Thu, 13 Mar 2025 08:35:22 -0400 Subject: [PATCH] MT#62181 core: fix thread exception AmThread::stop() detaches the thread, which makes it impossible to ::join() it. Only call one or the other. Change-Id: Icc9301dc9b31856ec7f963835cffd315bbc925bb --- core/sems.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/core/sems.cpp b/core/sems.cpp index 084cc810..55cfa144 100644 --- a/core/sems.cpp +++ b/core/sems.cpp @@ -672,7 +672,6 @@ int main(int argc, char* argv[]) AmPlugIn::dispose(); async_file_writer::instance()->stop(); - async_file_writer::instance()->join(); unlink(AmConfig::DaemonPidFile.c_str());