aboutsummaryrefslogtreecommitdiffstats
path: root/pkg/report/linux.go
diff options
context:
space:
mode:
authorDmitry Vyukov <dvyukov@google.com>2019-01-22 09:26:18 +0100
committerDmitry Vyukov <dvyukov@google.com>2019-01-22 09:26:18 +0100
commit5cf49c1c63ffbc708b24aabb4d4ef8ef15c7a992 (patch)
tree358d0d31368163b8b073936b3b87870e3642ce8a /pkg/report/linux.go
parent985f75cc50012d751f5fb16f3ac1026ad7dd3595 (diff)
pkg/report: skip trylock functions
Skip various *_trylock functions as we do for *_lock functions.
Diffstat (limited to 'pkg/report/linux.go')
-rw-r--r--pkg/report/linux.go4
1 files changed, 4 insertions, 0 deletions
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",