diff options
| author | Dmitry Vyukov <dvyukov@google.com> | 2019-01-22 09:26:18 +0100 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2019-01-22 09:26:18 +0100 |
| commit | 5cf49c1c63ffbc708b24aabb4d4ef8ef15c7a992 (patch) | |
| tree | 358d0d31368163b8b073936b3b87870e3642ce8a /pkg/report/linux.go | |
| parent | 985f75cc50012d751f5fb16f3ac1026ad7dd3595 (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.go | 4 |
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", |
