diff options
author | w0xlt <94266259+w0xlt@users.noreply.github.com> | 2022-01-20 17:30:12 -0300 |
---|---|---|
committer | w0xlt <94266259+w0xlt@users.noreply.github.com> | 2022-01-20 17:34:48 -0300 |
commit | dec787d8ac2e8fb42db87431dd622bf44897bc4e (patch) | |
tree | bd9a6b18491e1e57c7e1602c80a66564f3c407d8 /src | |
parent | 93609c1dfad70961697d0d12bf01cd34b8ceb6c8 (diff) |
refactor: replace RecursiveMutex `m_addr_local_mutex` with Mutex
Diffstat (limited to 'src')
-rw-r--r-- | src/net.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -694,7 +694,7 @@ private: // Our address, as reported by the peer CService addrLocal GUARDED_BY(m_addr_local_mutex); - mutable RecursiveMutex m_addr_local_mutex; + mutable Mutex m_addr_local_mutex; mapMsgCmdSize mapSendBytesPerMsgCmd GUARDED_BY(cs_vSend); mapMsgCmdSize mapRecvBytesPerMsgCmd GUARDED_BY(cs_vRecv); |