From 152baeddc2f576c59e80d951fac4f3930a8e297f Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Sun, 24 Apr 2022 16:15:09 +0200 Subject: pkg/report: ignore down_trylock frames We already ignore all other semaphore-related frames, but not this one. Ignore this one as well. --- pkg/report/linux.go | 1 + 1 file changed, 1 insertion(+) (limited to 'pkg/report/linux.go') diff --git a/pkg/report/linux.go b/pkg/report/linux.go index bddb9e811..e152118fa 100644 --- a/pkg/report/linux.go +++ b/pkg/report/linux.go @@ -1051,6 +1051,7 @@ var linuxStackParams = &stackParams{ "down_write", "down_read_trylock", "down_write_trylock", + "down_trylock", "up_read", "up_write", "mutex_lock", -- cgit mrf-deployment