From 5e7e4c9f6e57f5333bd17a20b0c85a78d032998e Mon Sep 17 00:00:00 2001 From: w0xlt <94266259+w0xlt@users.noreply.github.com> Date: Wed, 19 Jan 2022 07:06:36 -0300 Subject: refactor: replace RecursiveMutex g_maplocalhost_mutex with Mutex --- src/net.cpp | 2 +- src/net.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/net.cpp b/src/net.cpp index 96e6a1adb1..9f0e28df42 100644 --- a/src/net.cpp +++ b/src/net.cpp @@ -112,7 +112,7 @@ static const uint64_t RANDOMIZER_ID_ADDRCACHE = 0x1cf2e4ddd306dda9ULL; // SHA256 // bool fDiscover = true; bool fListen = true; -RecursiveMutex g_maplocalhost_mutex; +Mutex g_maplocalhost_mutex; std::map mapLocalHost GUARDED_BY(g_maplocalhost_mutex); static bool vfLimited[NET_MAX] GUARDED_BY(g_maplocalhost_mutex) = {}; std::string strSubVersion; diff --git a/src/net.h b/src/net.h index 4b682b473a..1f0ebedcf9 100644 --- a/src/net.h +++ b/src/net.h @@ -230,7 +230,7 @@ struct LocalServiceInfo { uint16_t nPort; }; -extern RecursiveMutex g_maplocalhost_mutex; +extern Mutex g_maplocalhost_mutex; extern std::map mapLocalHost GUARDED_BY(g_maplocalhost_mutex); extern const std::string NET_MESSAGE_COMMAND_OTHER; -- cgit v1.2.3