Browse Source

Valgrind: add a suppression file for hwloc, kindly submitted by Brice Goglin.

Cyril Roelandt 13 years ago
parent
commit
cf1a7b0320
1 changed files with 20 additions and 0 deletions
  1. 20 0
      tools/valgrind/hwloc.suppr

+ 20 - 0
tools/valgrind/hwloc.suppr

@@ -0,0 +1,20 @@
+{
+   zlib doesn't cleanup
+   Memcheck:Cond
+   fun:inflateReset2
+   fun:inflateInit2_
+}
+{
+   hwloc cannot free the global parser (xmlCleanupParser) because other threads may be using it
+   Memcheck:Leak
+   ...
+   fun:xmlInitParser
+}
+{
+   hwloc cannot free the global xml dict RMutex because it cannot call xmlCleanupParser
+   Memcheck:Leak
+   fun:malloc
+   fun:xmlNewRMutex
+   ...
+   fun:xmlDictCreate
+}