diff options
| author | Dmitry Vyukov <dvyukov@google.com> | 2021-10-25 12:23:36 +0200 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2021-10-25 15:40:39 +0200 |
| commit | c8823b7eb4f2349bc37d14741fbfe734648fce02 (patch) | |
| tree | 256fadfdf613a59be1064a838138c06df45e41ca /pkg/report/linux.go | |
| parent | 78e5f70a82a166b5b31c67eeed2563d754a478d2 (diff) | |
pkg/report: fix parsing of syscall entry points
gcc and clang somehow print different frames around syscall entry.
sys_-prefixed names is what currently produced for gcc (more common)
and we have lots of existing reports with sys_ prefix.
So make the clang frames parsed the same way as gcc frames are currently parsed.
Diffstat (limited to 'pkg/report/linux.go')
| -rw-r--r-- | pkg/report/linux.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/report/linux.go b/pkg/report/linux.go index 895760b8c..0cc43bcf8 100644 --- a/pkg/report/linux.go +++ b/pkg/report/linux.go @@ -1160,7 +1160,7 @@ var linuxStackParams = &stackParams{ "____sys_", "___sys_", "__sys_", - "__se_sys_", + "__se_", "__do_sys_", "compat_SYSC_", "compat_SyS_", |
