From 016048a761809223a26e46ab41ac889e8b3a7e69 Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Wed, 25 Oct 2017 23:39:56 +0200 Subject: [PATCH] Properly detect and show recursive lock release. --- server/TracyView.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/TracyView.cpp b/server/TracyView.cpp index a363dee8..25d4da37 100644 --- a/server/TracyView.cpp +++ b/server/TracyView.cpp @@ -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; }