diff options
author | Max Kellermann <max@duempel.org> | 2014-06-10 22:36:18 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2014-06-10 23:21:09 +0200 |
commit | d51265d48f1eb8d2ba7640793d5ce6968805d2c0 (patch) | |
tree | 28f255a8e9d956ca139130e6052534da32c63790 /valgrind.suppressions | |
parent | dc14ac7a8fd6efc744e8009ddcfe26a5ec108dc7 (diff) | |
download | mpd-d51265d48f1eb8d2ba7640793d5ce6968805d2c0.tar.gz mpd-d51265d48f1eb8d2ba7640793d5ce6968805d2c0.tar.xz mpd-d51265d48f1eb8d2ba7640793d5ce6968805d2c0.zip |
valgrind.suppressions: more library suppressions
Diffstat (limited to '')
-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 +} |