From 5f175e9c09c764e204a3935dde230dd929f4e9fc Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Tue, 2 Jul 2019 09:03:49 +0200 Subject: pkg/report: ignore __wake_up function on linux They are very generic and a bug is almost always in the parent frame. --- 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 dc2a17a06..a43a66481 100644 --- a/pkg/report/linux.go +++ b/pkg/report/linux.go @@ -740,6 +740,7 @@ var linuxStackParams = &stackParams{ "mutex_unlock", "osq_lock", "osq_unlock", + "__wake_up", "refcount_add", "refcount_sub", "refcount_inc", -- cgit mrf-deployment