Browse Source

reduce start and stop time

pull/1274/head
orignal 6 years ago
parent
commit
0e9074aaba
  1. 8
      libi2pd/Transports.cpp

8
libi2pd/Transports.cpp

@ -35,8 +35,11 @@ namespace transport @@ -35,8 +35,11 @@ namespace transport
void DHKeysPairSupplier::Stop ()
{
{
std::unique_lock<std::mutex> l(m_AcquiredMutex);
m_IsRunning = false;
m_Acquired.notify_one ();
}
if (m_Thread)
{
m_Thread->join ();
@ -50,12 +53,12 @@ namespace transport @@ -50,12 +53,12 @@ namespace transport
while (m_IsRunning)
{
int num, total = 0;
while ((num = m_QueueSize - (int)m_Queue.size ()) > 0 && total < 20)
while ((num = m_QueueSize - (int)m_Queue.size ()) > 0 && total < 10)
{
CreateDHKeysPairs (num);
total += num;
}
if (total >= 20)
if (total >= 10)
{
LogPrint (eLogWarning, "Transports: ", total, " DH keys generated at the time");
std::this_thread::sleep_for (std::chrono::seconds(1)); // take a break
@ -63,6 +66,7 @@ namespace transport @@ -63,6 +66,7 @@ namespace transport
else
{
std::unique_lock<std::mutex> l(m_AcquiredMutex);
if (!m_IsRunning) break;
m_Acquired.wait (l); // wait for element gets acquired
}
}

Loading…
Cancel
Save