OLD | NEW |
1 # Suppressions for Thread Sanitizer | 1 # Suppressions for Thread Sanitizer |
2 | 2 |
3 # WebP races (harmlessly) choosing function pointers for SIMD versions of some o
f its functions. | 3 # WebP races (harmlessly) choosing function pointers for SIMD versions of some o
f its functions. |
4 race:third_party/externals/libwebp | 4 race:third_party/externals/libwebp |
5 | 5 |
6 # skia:2459 Seemingly misdiagnosed use-after-free, having something to do with
software GL drivers. | 6 # skia:2459 Seemingly misdiagnosed use-after-free, having something to do with
software GL drivers. |
7 race:swrast_dri.so # If this doesn't work, it's got to be SkGLContextHelper::in
it :( | 7 race:SkGLContextHelper::init # We don't always get swrast_dri.so in the stack o
r we'd use that. |
| 8 |
| 9 # For now assume anything using SkOnce and calls on SkRefCntBase (ref, unref, un
ique) are safe. |
| 10 # TODO(mtklein): teach TSAN about SkOnce, SkRefCnt and SkSpinlock correctly. |
| 11 race:SkOnce |
| 12 race:SkRefCntBase |
OLD | NEW |