mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-10 20:03:34 -03:00
[net] Make cs_vProcessMsg a non-recursive mutex
This commit is contained in:
parent
23d9352654
commit
6693c499f7
1 changed files with 1 additions and 1 deletions
|
@ -615,7 +615,7 @@ private:
|
|||
|
||||
std::list<CNetMessage> vRecvMsg; // Used only by SocketHandler thread
|
||||
|
||||
RecursiveMutex cs_vProcessMsg;
|
||||
Mutex cs_vProcessMsg;
|
||||
std::list<CNetMessage> vProcessMsg GUARDED_BY(cs_vProcessMsg);
|
||||
size_t nProcessQueueSize GUARDED_BY(cs_vProcessMsg){0};
|
||||
|
||||
|
|
Loading…
Reference in a new issue