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

Side by Side 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 unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Pass this file to Valgrind with "--suppressions=tools/valgrind.supp" 1 # Pass this file to Valgrind with "--suppressions=tools/valgrind.supp"
2 2
3 # Intentional thread / memory leak in DM.
4 {
5 dm_keepalive_thread_leak
6 Memcheck:Leak
7 match-leak-kinds: possible
8 ...
9 fun:_ZN8SkThreadC1EPFvPvES0_
10 fun:_ZL15start_keepalivev
11 fun:_Z7dm_mainv
12 fun:main
13 }
14
3 # Third party lib, driver issues. 15 # Third party lib, driver issues.
4 { 16 {
5 ati_driver_bug_1 17 ati_driver_bug_1
6 Memcheck:Param 18 Memcheck:Param
7 ioctl(generic) 19 ioctl(generic)
8 fun:ioctl 20 fun:ioctl
9 ... 21 ...
10 obj:/usr/lib/x86_64-linux-gnu/dri/fglrx_dri.so 22 obj:/usr/lib/x86_64-linux-gnu/dri/fglrx_dri.so
11 } 23 }
12 { 24 {
(...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after
217 { 229 {
218 gpu_issue_14 230 gpu_issue_14
219 Memcheck:Addr4 231 Memcheck:Addr4
220 fun:_ZN22GrAAConvexPathRenderer10onDrawPathERK6SkPathRK11SkStrokeRecP12GrDra wTargetb 232 fun:_ZN22GrAAConvexPathRenderer10onDrawPathERK6SkPathRK11SkStrokeRecP12GrDra wTargetb
221 } 233 }
222 { 234 {
223 gpu_issue_15 235 gpu_issue_15
224 Memcheck:Addr2 236 Memcheck:Addr2
225 fun:_ZN22GrAAConvexPathRenderer10onDrawPathERK6SkPathRK11SkStrokeRecP12GrDra wTargetb 237 fun:_ZN22GrAAConvexPathRenderer10onDrawPathERK6SkPathRK11SkStrokeRecP12GrDra wTargetb
226 } 238 }
OLDNEW
« 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