Common/WorkQueueThread: Make IsRunning function public.

This commit is contained in:
Jordan Woyak
2026-03-26 16:03:59 -05:00
parent d95445727b
commit 1ee8c5a8f1
+2 -2
View File
@@ -98,6 +98,8 @@ public:
m_items.WaitForEmpty();
}
bool IsRunning() { return m_thread.joinable(); }
private:
using CommandFunction = std::function<void()>;
@@ -142,8 +144,6 @@ private:
return std::lock_guard{m_mutex};
}
bool IsRunning() { return m_thread.joinable(); }
void ThreadLoop(const std::string& thread_name, const FunctionType& function)
{
Common::SetCurrentThreadName(thread_name.c_str());