mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-12-18 22:47:21 -06:00
Use atomic primitives from standard library
QAtomicInteger underlying is using std::atomic structures, so using std::atomic directly should not be a problem for us. PR #19507.
This commit is contained in:
@@ -1274,7 +1274,7 @@ void Application::adjustThreadPriority() const
|
||||
void Application::cleanup()
|
||||
{
|
||||
// cleanup() can be called multiple times during shutdown. We only need it once.
|
||||
if (!m_isCleanupRun.testAndSetAcquire(0, 1))
|
||||
if (m_isCleanupRun.exchange(true, std::memory_order_acquire))
|
||||
return;
|
||||
|
||||
LogMsg(tr("qBittorrent termination initiated"));
|
||||
|
||||
Reference in New Issue
Block a user