diff options
author | Anthony Towns <aj@erisian.com.au> | 2022-05-21 01:08:47 +1000 |
---|---|---|
committer | Anthony Towns <aj@erisian.com.au> | 2022-05-21 01:23:02 +1000 |
commit | be6aa72f9f8d50b6b5b19b319a74abe7ab4099ff (patch) | |
tree | c585ba30458571064e338afedc036c7d46d8d696 /src | |
parent | f24bd45b37e1b2d19e5a053dbfefa30306c1d41a (diff) |
qt/clientmodel: thread safety annotation for m_cached_tip_mutex
Diffstat (limited to 'src')
-rw-r--r-- | src/qt/clientmodel.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qt/clientmodel.h b/src/qt/clientmodel.h index b10ffb4523..81f03a58ec 100644 --- a/src/qt/clientmodel.h +++ b/src/qt/clientmodel.h @@ -105,7 +105,7 @@ private: //! A thread to interact with m_node asynchronously QThread* const m_thread; - void TipChanged(SynchronizationState sync_state, interfaces::BlockTip tip, double verification_progress, bool header); + void TipChanged(SynchronizationState sync_state, interfaces::BlockTip tip, double verification_progress, bool header) EXCLUSIVE_LOCKS_REQUIRED(!m_cached_tip_mutex); void subscribeToCoreSignals(); void unsubscribeFromCoreSignals(); |