Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(17)

Unified Diff: tools/valgrind.supp

Issue 1006143002: Suppress keepalive thread leak in DM. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/valgrind.supp
diff --git a/tools/valgrind.supp b/tools/valgrind.supp
index d919c86126d4644e5d94d53642c954af692bbe7b..28429c032c13bb8e9a99940a6dbe47ab2cc37ef2 100644
--- a/tools/valgrind.supp
+++ b/tools/valgrind.supp
@@ -1,5 +1,17 @@
# Pass this file to Valgrind with "--suppressions=tools/valgrind.supp"
+# Intentional thread / memory leak in DM.
+{
+ dm_keepalive_thread_leak
+ Memcheck:Leak
+ match-leak-kinds: possible
+ ...
+ fun:_ZN8SkThreadC1EPFvPvES0_
+ fun:_ZL15start_keepalivev
+ fun:_Z7dm_mainv
+ fun:main
+}
+
# Third party lib, driver issues.
{
ati_driver_bug_1
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698