mirror of
https://github.com/dashpay/dash.git
synced 2024-12-25 20:12:57 +01:00
Compare commits
2 Commits
2aa17b37b5
...
ec83749ac5
Author | SHA1 | Date | |
---|---|---|---|
|
ec83749ac5 | ||
|
ce8b10fdd6 |
23
src/sync.h
23
src/sync.h
@ -161,18 +161,31 @@ template <typename Mutex, typename Base = typename Mutex::UniqueLock>
|
|||||||
class SCOPED_LOCKABLE UniqueLock : public Base
|
class SCOPED_LOCKABLE UniqueLock : public Base
|
||||||
{
|
{
|
||||||
private:
|
private:
|
||||||
|
#ifdef DEBUG_LOCKCONTENTION
|
||||||
|
std::string m_lock_log_time_prefix;
|
||||||
|
std::chrono::microseconds m_started_time{};
|
||||||
|
#endif
|
||||||
void Enter(const char* pszName, const char* pszFile, int nLine)
|
void Enter(const char* pszName, const char* pszFile, int nLine)
|
||||||
{
|
{
|
||||||
EnterCritical(pszName, pszFile, nLine, Base::mutex());
|
EnterCritical(pszName, pszFile, nLine, Base::mutex());
|
||||||
#ifdef DEBUG_LOCKCONTENTION
|
#ifdef DEBUG_LOCKCONTENTION
|
||||||
|
m_lock_log_time_prefix = strprintf("lock contention %s, %s:%d", pszName, pszFile, nLine);
|
||||||
|
m_started_time = GetTime<std::chrono::microseconds>();
|
||||||
if (Base::try_lock()) return;
|
if (Base::try_lock()) return;
|
||||||
LOG_TIME_MICROS_WITH_CATEGORY(strprintf("lock contention %s, %s:%d", pszName, pszFile, nLine), BCLog::LOCK);
|
LOG_TIME_MICROS_WITH_CATEGORY(m_lock_log_time_prefix, BCLog::LOCK);
|
||||||
#endif
|
#endif
|
||||||
Base::lock();
|
Base::lock();
|
||||||
|
#ifdef DEBUG_LOCKCONTENTION
|
||||||
|
m_started_time = GetTime<std::chrono::microseconds>();
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
bool TryEnter(const char* pszName, const char* pszFile, int nLine)
|
bool TryEnter(const char* pszName, const char* pszFile, int nLine)
|
||||||
{
|
{
|
||||||
|
#ifdef DEBUG_LOCKCONTENTION
|
||||||
|
m_lock_log_time_prefix = strprintf("lock contention %s, %s:%d", pszName, pszFile, nLine);
|
||||||
|
m_started_time = GetTime<std::chrono::microseconds>();
|
||||||
|
#endif
|
||||||
EnterCritical(pszName, pszFile, nLine, Base::mutex(), true);
|
EnterCritical(pszName, pszFile, nLine, Base::mutex(), true);
|
||||||
if (Base::try_lock()) {
|
if (Base::try_lock()) {
|
||||||
return true;
|
return true;
|
||||||
@ -203,8 +216,16 @@ public:
|
|||||||
|
|
||||||
~UniqueLock() UNLOCK_FUNCTION()
|
~UniqueLock() UNLOCK_FUNCTION()
|
||||||
{
|
{
|
||||||
|
#ifdef DEBUG_LOCKCONTENTION
|
||||||
|
const auto diff_time = (GetTime<std::chrono::microseconds>() - m_started_time);
|
||||||
|
#endif
|
||||||
if (Base::owns_lock())
|
if (Base::owns_lock())
|
||||||
LeaveCritical();
|
LeaveCritical();
|
||||||
|
#ifdef DEBUG_LOCKCONTENTION
|
||||||
|
if (diff_time.count() > 100 && m_started_time.count() > 0) {
|
||||||
|
LogPrint(BCLog::LOCK, "%s inside %iμs\n", m_lock_log_time_prefix, diff_time.count());
|
||||||
|
}
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
operator bool()
|
operator bool()
|
||||||
|
Loading…
Reference in New Issue
Block a user