added a flag in peerState specific to short invites, and several checks for consistency

This commit is contained in:
csoler 2019-05-22 21:46:11 +02:00
parent dac76439bd
commit 56e591f728
No known key found for this signature in database
GPG key ID: 7BCA522266C0804C
4 changed files with 91 additions and 13 deletions

View file

@ -110,6 +110,12 @@ RsThread::~RsThread()
{
RsErr() << "Deleting a thread that is still running! Something is very wrong here and Retroshare is likely to crash because of this." << std::endl;
print_stacktrace();
while(isRunning())
{
std::cerr << "." << std::endl;
rstime::rs_usleep(1000*1000);
}
}
}