From 5cf49c1c63ffbc708b24aabb4d4ef8ef15c7a992 Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Tue, 22 Jan 2019 09:26:18 +0100 Subject: pkg/report: skip trylock functions Skip various *_trylock functions as we do for *_lock functions. --- pkg/report/linux.go | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'pkg/report/linux.go') diff --git a/pkg/report/linux.go b/pkg/report/linux.go index 92784825e..c35f689bf 100644 --- a/pkg/report/linux.go +++ b/pkg/report/linux.go @@ -704,9 +704,12 @@ var linuxStackParams = &stackParams{ "lock_release", "register_lock_class", "spin_lock", + "spin_trylock", "spin_unlock", "raw_read_lock", + "raw_read_trylock", "raw_write_lock", + "raw_write_trylock", "down_read", "down_write", "down_read_trylock", @@ -714,6 +717,7 @@ var linuxStackParams = &stackParams{ "up_read", "up_write", "mutex_lock", + "mutex_trylock", "mutex_unlock", "memcpy", "memcmp", -- cgit mrf-deployment