| 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. | 2 # which should be ignored (i.e. not instrumented) by ThreadSanitizer. |
| 3 # See http://code.google.com/p/data-race-test/wiki/ThreadSanitizerIgnores. | 3 # See http://code.google.com/p/data-race-test/wiki/ThreadSanitizerIgnores. |
| 4 | 4 |
| 5 # ignore these libraries | 5 # ignore these libraries |
| 6 obj:*/ld-2* | 6 obj:*/ld-2* |
| 7 obj:*/libpthread-* | 7 obj:*/libpthread-* |
| 8 obj:*/libfreetype* | 8 obj:*/libfreetype* |
| 9 | 9 |
| 10 # we ignore the whole NSS library for now since | 10 # we ignore the whole NSS library for now since |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 76 src:*third_party/skia* | 76 src:*third_party/skia* |
| 77 | 77 |
| 78 # WebKit hotspot | 78 # WebKit hotspot |
| 79 fun:*png_write* | 79 fun:*png_write* |
| 80 | 80 |
| 81 # This function generates 25% of memory accesses in net_unittests | 81 # This function generates 25% of memory accesses in net_unittests |
| 82 fun:*icu_4_2*UnicodeSet*add* | 82 fun:*icu_4_2*UnicodeSet*add* |
| 83 | 83 |
| 84 # There's some weird failure test going on in this tiny test function in sqlite | 84 # There's some weird failure test going on in this tiny test function in sqlite |
| 85 fun_r:threadLockingTest | 85 fun_r:threadLockingTest |
| 86 |
| 87 # Ignore accesses below GetCurrentThreadIdentifier. |
| 88 # There is a benign race which is hard to suppress properly, |
| 89 # see http://crbug.com/44580 |
| 90 fun_r:*ChromeThread*GetCurrentThreadIdentifier* |
| OLD | NEW |