mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-03-05 16:00:40 +01:00
refactor: replace RecursiveMutex m_banned_mutex with Mutex
This commit is contained in:
parent
784c316f9c
commit
0fb2908708
1 changed files with 1 additions and 1 deletions
|
@ -84,7 +84,7 @@ private:
|
||||||
//!clean unused entries (if bantime has expired)
|
//!clean unused entries (if bantime has expired)
|
||||||
void SweepBanned() EXCLUSIVE_LOCKS_REQUIRED(m_banned_mutex);
|
void SweepBanned() EXCLUSIVE_LOCKS_REQUIRED(m_banned_mutex);
|
||||||
|
|
||||||
RecursiveMutex m_banned_mutex;
|
Mutex m_banned_mutex;
|
||||||
banmap_t m_banned GUARDED_BY(m_banned_mutex);
|
banmap_t m_banned GUARDED_BY(m_banned_mutex);
|
||||||
bool m_is_dirty GUARDED_BY(m_banned_mutex){false};
|
bool m_is_dirty GUARDED_BY(m_banned_mutex){false};
|
||||||
CClientUIInterface* m_client_interface = nullptr;
|
CClientUIInterface* m_client_interface = nullptr;
|
||||||
|
|
Loading…
Add table
Reference in a new issue