OLD | NEW |
1 # This file lists the functions, object files and source files | 1 # This file lists the functions, object files and source files |
2 # which should be ignored (i.e. not instrumented) by ThreadSanitizer on Windows. | 2 # which should be ignored (i.e. not instrumented) by ThreadSanitizer on Windows. |
3 | 3 |
4 # We ignore security libraries for now since their instrumentation is very slow. | 4 # We ignore security libraries for now since their instrumentation is very slow. |
5 # TODO(timurrrr): investigate whether we need to instrument them | 5 # TODO(timurrrr): investigate whether we need to instrument them |
6 obj:*CRYPT32.dll | 6 obj:*CRYPT32.dll |
7 obj:*RPCRT4.dll | 7 obj:*RPCRT4.dll |
8 fun_r:*SHA256* | 8 fun_r:*SHA256* |
9 fun_r:*BCryptGenerateSymmetricKey* | 9 fun_r:*BCryptGenerateSymmetricKey* |
10 fun_r:*CryptAcquireContext* | 10 fun_r:*CryptAcquireContext* |
(...skipping 25 matching lines...) Expand all Loading... |
36 | 36 |
37 # Strange reports on net_unittests, maybe related to raising | 37 # Strange reports on net_unittests, maybe related to raising |
38 # a debug exception by PlatformThread | 38 # a debug exception by PlatformThread |
39 # TODO(timurrrr): investigate | 39 # TODO(timurrrr): investigate |
40 fun_r:*PlatformThread*SetName* | 40 fun_r:*PlatformThread*SetName* |
41 | 41 |
42 # Recursively ignore Histrogram::Add and friends, see http://crbug.com/62694. | 42 # Recursively ignore Histrogram::Add and friends, see http://crbug.com/62694. |
43 fun_r:base::Histogram::Add | 43 fun_r:base::Histogram::Add |
44 fun_r:base::HistogramSamples::Add | 44 fun_r:base::HistogramSamples::Add |
45 fun_r:base::HistogramBase::AddTime | 45 fun_r:base::HistogramBase::AddTime |
| 46 |
| 47 # ffmpegsumo.dll appears to read a few bytes beyond the end of the buffer. |
| 48 fun:_ff_prefetch_mmxext |
OLD | NEW |