From 70daae20b179dd25328cc76334ce0edf81374ef4 Mon Sep 17 00:00:00 2001 From: Thiago Macieira Date: Wed, 16 Oct 2024 17:40:58 -0700 Subject: [PATCH] QThread: use load/store operations with explicit ordering MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The implicit load is an acquire, which isn't necessary in any of these cases, including the two liens changing the store: they were creating a temporary QAtomicPointer, which introduced the loadAcquire(). I've left the qCDebug() lines alone. Pick-to: 6.5 Change-Id: If45e068eaaf3cd4d2c81fffd1459a779b4eb4110 Reviewed-by: MÃ¥rten Nordheim (cherry picked from commit 6806391600b5398d4fdb3c4d2d5e442289522756) Reviewed-by: Qt Cherry-pick Bot