1
0
mirror of https://github.com/wolfpld/tracy.git synced 2025-03-20 07:40:02 +08:00

Properly show recursive lock wait sections.

This commit is contained in:
Bartosz Taudul 2017-10-25 23:36:08 +02:00
parent e16f784617
commit 01b2e64985

View File

@ -2249,6 +2249,10 @@ int View::DrawLocks( uint64_t tid, bool hover, double pxns, const ImVec2& wpos,
}
break;
}
if( (*next)->waitList != (*vbegin)->waitList )
{
break;
}
next++;
}
break;