소스 검색

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
+   ...
+}