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

Side by Side Diff: tools/valgrind.supp

Issue 1008873003: widen leak supression. looks like start_keepalive is sometimes inlined. (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. 3 # Intentional thread / memory leak in DM.
4 { 4 {
5 dm_keepalive_thread_leak 5 dm_keepalive_thread_leak
6 Memcheck:Leak 6 Memcheck:Leak
7 match-leak-kinds: possible 7 match-leak-kinds: possible
8 ... 8 ...
9 fun:_ZN8SkThreadC1EPFvPvES0_ 9 fun:_ZN8SkThreadC1EPFvPvES0_
10 fun:_ZL15start_keepalivev 10 ...
11 fun:_Z7dm_mainv 11 fun:_Z7dm_mainv
12 fun:main 12 fun:main
13 } 13 }
14 14
15 # Third party lib, driver issues. 15 # Third party lib, driver issues.
16 { 16 {
17 ati_driver_bug_1 17 ati_driver_bug_1
18 Memcheck:Param 18 Memcheck:Param
19 ioctl(generic) 19 ioctl(generic)
20 fun:ioctl 20 fun:ioctl
(...skipping 208 matching lines...) Expand 10 before | Expand all | Expand 10 after
229 { 229 {
230 gpu_issue_14 230 gpu_issue_14
231 Memcheck:Addr4 231 Memcheck:Addr4
232 fun:_ZN22GrAAConvexPathRenderer10onDrawPathERK6SkPathRK11SkStrokeRecP12GrDra wTargetb 232 fun:_ZN22GrAAConvexPathRenderer10onDrawPathERK6SkPathRK11SkStrokeRecP12GrDra wTargetb
233 } 233 }
234 { 234 {
235 gpu_issue_15 235 gpu_issue_15
236 Memcheck:Addr2 236 Memcheck:Addr2
237 fun:_ZN22GrAAConvexPathRenderer10onDrawPathERK6SkPathRK11SkStrokeRecP12GrDra wTargetb 237 fun:_ZN22GrAAConvexPathRenderer10onDrawPathERK6SkPathRK11SkStrokeRecP12GrDra wTargetb
238 } 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