mirror of
https://github.com/dashpay/dash.git
synced 2024-12-26 20:42:59 +01:00
replace absolute sleep with conditional wait
This commit is contained in:
parent
418a9eeb37
commit
ade97928f7
13
src/net.cpp
13
src/net.cpp
@ -103,6 +103,7 @@ NodeId nLastNodeId = 0;
|
|||||||
CCriticalSection cs_nLastNodeId;
|
CCriticalSection cs_nLastNodeId;
|
||||||
|
|
||||||
static CSemaphore *semOutbound = NULL;
|
static CSemaphore *semOutbound = NULL;
|
||||||
|
boost::condition_variable messageHandlerCondition;
|
||||||
|
|
||||||
// Signals for message handling
|
// Signals for message handling
|
||||||
static CNodeSignals g_signals;
|
static CNodeSignals g_signals;
|
||||||
@ -601,8 +602,10 @@ bool CNode::ReceiveMsgBytes(const char *pch, unsigned int nBytes)
|
|||||||
pch += handled;
|
pch += handled;
|
||||||
nBytes -= handled;
|
nBytes -= handled;
|
||||||
|
|
||||||
if (msg.complete())
|
if (msg.complete()) {
|
||||||
msg.nTime = GetTimeMicros();
|
msg.nTime = GetTimeMicros();
|
||||||
|
messageHandlerCondition.notify_one();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
@ -1433,6 +1436,9 @@ bool OpenNetworkConnection(const CAddress& addrConnect, CSemaphoreGrant *grantOu
|
|||||||
|
|
||||||
void ThreadMessageHandler()
|
void ThreadMessageHandler()
|
||||||
{
|
{
|
||||||
|
boost::mutex condition_mutex;
|
||||||
|
boost::unique_lock<boost::mutex> lock(condition_mutex);
|
||||||
|
|
||||||
SetThreadPriority(THREAD_PRIORITY_BELOW_NORMAL);
|
SetThreadPriority(THREAD_PRIORITY_BELOW_NORMAL);
|
||||||
while (true)
|
while (true)
|
||||||
{
|
{
|
||||||
@ -1493,10 +1499,7 @@ void ThreadMessageHandler()
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (fSleep)
|
if (fSleep)
|
||||||
MilliSleep(1);
|
messageHandlerCondition.timed_wait(lock, boost::posix_time::microsec_clock::universal_time() + boost::posix_time::milliseconds(100));
|
||||||
|
|
||||||
boost::this_thread::interruption_point();
|
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user