Merge branch 'development' into LTS_development

This commit is contained in:
Thulinma 2020-10-08 12:53:03 +02:00
commit 84113218b8

View file

@ -176,9 +176,8 @@ namespace IPC {
--isLocked; --isLocked;
if (!isLocked){ if (!isLocked){
uint64_t micros = Util::getMicros(lockTime); uint64_t micros = Util::getMicros(lockTime);
if (micros > 500){ if (micros > 10000){
INFO_MSG("Semaphore %s was locked for %.3f ms", myName.c_str(), (double)micros/1000.0); INFO_MSG("Semaphore %s was locked for %.3f ms", myName.c_str(), (double)micros/1000.0);
BACKTRACE;
} }
} }
} }