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

Properly detect and show recursive lock release.

This commit is contained in:
Bartosz Taudul 2017-10-25 23:39:56 +02:00
parent f013dfe706
commit 016048a761

View File

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