ソースを参照

papi: suppress memleak

Samuel Thibault 4 年 前
コミット
c2be465854
共有1 個のファイルを変更した9 個の追加0 個の削除を含む
  1. 9 0
      tools/dev/valgrind/papi.suppr

+ 9 - 0
tools/dev/valgrind/papi.suppr

@@ -22,3 +22,12 @@
    fun:_pe_libpfm4_init
    ...
 }
+
+# This happens in multithreaded_init: papi does not support getting initialized in one thread and shut down in another thread.
+{
+   <insert_a_suppression_name_here>
+   Memcheck:Leak
+   fun:malloc
+   fun:allocate_thread
+   ...
+}