From: Florian Krohm Date: Mon, 7 Oct 2013 20:57:51 +0000 (+0000) Subject: Filter out the dynamic linker from back traces. X-Git-Tag: svn/VALGRIND_3_9_0~65 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9f3b86cf3524deaad2f47aaf705f3543576eb1ad;p=thirdparty%2Fvalgrind.git Filter out the dynamic linker from back traces. Patch by Maran Pakkirisamy (maranp@linux.vnet.ibm.com). git-svn-id: svn://svn.valgrind.org/valgrind/trunk@13626 --- diff --git a/tests/filter_libc b/tests/filter_libc index 273eff4e5a..9fad2f5160 100755 --- a/tests/filter_libc +++ b/tests/filter_libc @@ -13,6 +13,9 @@ while (<>) s/\(in \/.*(libc|libSystem).*\)$/(in \/...libc...)/; s/\(within \/.*(libc|libSystem).*\)$/(within \/...libc...)/; + # Filter out dynamic loader + s/\(in \/.*ld-.*so\)$//; + # Remove the filename -- on some platforms (eg. Linux) it will be in # libc, on some (eg. Darwin) it will be in the main executable. s/\(below main\) \(.+\)$/(below main)/;