]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
Add a couple of suppressions relating to unwinding the stack following
authorJulian Seward <jseward@acm.org>
Sat, 13 Dec 2008 01:18:38 +0000 (01:18 +0000)
committerJulian Seward <jseward@acm.org>
Sat, 13 Dec 2008 01:18:38 +0000 (01:18 +0000)
pthread_exit.

git-svn-id: svn://svn.valgrind.org/valgrind/trunk@8819

glibc-2.34567-NPTL-helgrind.supp

index 03b1241bcf448758a36f1be1da84a315c16c4be9..f559dfb89f9bb962081ec8aa96bd0be2459e3172 100644 (file)
    ...
    fun:dlsym
 }
+
+####################################################
+# Other stuff.
+#
+# pthread_exit apparently calls some kind of unwind
+# mechanism - maybe to remove some number of frames
+# from the thread's stack, so as to get back to the 
+# outermost frame for the thread?  Anyway..
+
+{
+   helgrind---*Unwind*-...-pthread_exit
+   Helgrind:Race
+   fun:*Unwind*
+   ...
+   fun:pthread_exit
+}
+
+{
+   helgrind---...-*Unwind*-*pthread_unwind*
+   Helgrind:Race
+   ...
+   fun:*Unwind*
+   fun:*pthread_unwind*
+}