OLD | NEW |
1 # Suppressions for Thread Sanitizer | 1 # Suppressions for Thread Sanitizer |
2 # | 2 # |
3 # CAREFUL! Comments must go on their own line or your suppressions will silentl
y fail. | 3 # CAREFUL! Comments must go on their own line or your suppressions will silentl
y fail. |
4 | 4 |
5 # WebP races (harmlessly) choosing function pointers for SIMD versions of some o
f its functions. | 5 # WebP races (harmlessly) choosing function pointers for SIMD versions of some o
f its functions. |
6 race:third_party/externals/libwebp | 6 race:third_party/externals/libwebp |
7 | 7 |
8 # skia:2459 Seemingly misdiagnosed use-after-free, having something to do with
software GL drivers. | 8 # skia:2459 Seemingly misdiagnosed use-after-free, having something to do with
software GL drivers. |
9 # Having trouble getting this suppression to match. | 9 # Having trouble getting this suppression to match. |
10 # We've tried: race:swrast_dri.so | 10 # We've tried: race:swrast_dri.so |
11 # race:SkGLContextHelper::init | 11 # race:SkGLContextHelper::init |
12 # Maybe because it's diagnosed as a use-after-free, not as a race? | 12 # Maybe because it's diagnosed as a use-after-free, not as a race? |
13 race:SkGLContextHelper | 13 race:SkGLContextHelper |
14 | 14 |
15 # Threadsafe, should be ported to SkLazyPtr. | 15 # Threadsafe, should be ported to SkLazyPtr. |
16 race:SkFontHost_FreeType | 16 race:SkFontHost_FreeType |
| 17 race:is_lcd_supported |
17 | 18 |
18 # Not threadsafe, should be fixed. | 19 # Not threadsafe, should be fixed. |
19 race:RefFCI | 20 race:RefFCI |
20 race:SkString | 21 race:SkString |
21 | |
22 # Not threadsafe, should be deleted. | |
23 race:SkPDF | 22 race:SkPDF |
OLD | NEW |