diff options
Diffstat (limited to 'valgrind.suppressions')
-rw-r--r-- | valgrind.suppressions | 75 |
1 files changed, 75 insertions, 0 deletions
diff --git a/valgrind.suppressions b/valgrind.suppressions index 8d1d86c41..308427fdd 100644 --- a/valgrind.suppressions +++ b/valgrind.suppressions @@ -486,6 +486,66 @@ fun:_dl_init } +{ + <insert_a_suppression_name_here> + Memcheck:Cond + fun:index + fun:expand_dynamic_string_token + fun:fillin_rpath +} + +{ + <insert_a_suppression_name_here> + Memcheck:Cond + fun:index + fun:expand_dynamic_string_token + ... + fun:do_preload +} + +# +# libopenal +# + +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:calloc + obj:*/libopenal.so* + ... + fun:_dl_init +} + +# +# libadplug +# + +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:malloc + ... + obj:*/libadplug*.so* + ... + fun:_dl_init +} + +# +# libjack +# + +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:_Znwm + obj:*/libjack.so* + ... + fun:_dl_init +} + # # libsmbclient # @@ -507,3 +567,18 @@ fun:smbc_setDebug fun:smbc_init } + +# +# libgomp +# + +{ + <insert_a_suppression_name_here> + Memcheck:Leak + match-leak-kinds: reachable + fun:malloc + ... + fun:gomp_init_num_threads + ... + fun:_dl_init +} |