mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-02-12 11:19:08 -05:00
Merge #9535: Split CNode::cs_vSend: message processing and message sending
376b3c2
Make the cs_sendProcessing a LOCK instead of a TRY_LOCK (Matt Corallo)d7c58ad
Split CNode::cs_vSend: message processing and message sending (Matt Corallo)
This commit is contained in:
commit
82274c02ed
2 changed files with 12 additions and 15 deletions
25
src/net.cpp
25
src/net.cpp
|
@ -1147,12 +1147,10 @@ void CConnman::ThreadSocketHandler()
|
||||||
// * Hand off all complete messages to the processor, to be handled without
|
// * Hand off all complete messages to the processor, to be handled without
|
||||||
// blocking here.
|
// blocking here.
|
||||||
{
|
{
|
||||||
TRY_LOCK(pnode->cs_vSend, lockSend);
|
LOCK(pnode->cs_vSend);
|
||||||
if (lockSend) {
|
if (!pnode->vSendMsg.empty()) {
|
||||||
if (!pnode->vSendMsg.empty()) {
|
FD_SET(pnode->hSocket, &fdsetSend);
|
||||||
FD_SET(pnode->hSocket, &fdsetSend);
|
continue;
|
||||||
continue;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
|
@ -1272,12 +1270,10 @@ void CConnman::ThreadSocketHandler()
|
||||||
continue;
|
continue;
|
||||||
if (FD_ISSET(pnode->hSocket, &fdsetSend))
|
if (FD_ISSET(pnode->hSocket, &fdsetSend))
|
||||||
{
|
{
|
||||||
TRY_LOCK(pnode->cs_vSend, lockSend);
|
LOCK(pnode->cs_vSend);
|
||||||
if (lockSend) {
|
size_t nBytes = SocketSendData(pnode);
|
||||||
size_t nBytes = SocketSendData(pnode);
|
if (nBytes) {
|
||||||
if (nBytes) {
|
RecordBytesSent(nBytes);
|
||||||
RecordBytesSent(nBytes);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1875,9 +1871,8 @@ void CConnman::ThreadMessageHandler()
|
||||||
|
|
||||||
// Send messages
|
// Send messages
|
||||||
{
|
{
|
||||||
TRY_LOCK(pnode->cs_vSend, lockSend);
|
LOCK(pnode->cs_sendProcessing);
|
||||||
if (lockSend)
|
GetNodeSignals().SendMessages(pnode, *this, flagInterruptMsgProc);
|
||||||
GetNodeSignals().SendMessages(pnode, *this, flagInterruptMsgProc);
|
|
||||||
}
|
}
|
||||||
if (flagInterruptMsgProc)
|
if (flagInterruptMsgProc)
|
||||||
return;
|
return;
|
||||||
|
|
|
@ -618,6 +618,8 @@ public:
|
||||||
std::list<CNetMessage> vProcessMsg;
|
std::list<CNetMessage> vProcessMsg;
|
||||||
size_t nProcessQueueSize;
|
size_t nProcessQueueSize;
|
||||||
|
|
||||||
|
CCriticalSection cs_sendProcessing;
|
||||||
|
|
||||||
std::deque<CInv> vRecvGetData;
|
std::deque<CInv> vRecvGetData;
|
||||||
uint64_t nRecvBytes;
|
uint64_t nRecvBytes;
|
||||||
std::atomic<int> nRecvVersion;
|
std::atomic<int> nRecvVersion;
|
||||||
|
|
Loading…
Add table
Reference in a new issue