| 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 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 111 fun_r:*BrowserThread*GetCurrentThreadIdentifier* | 111 fun_r:*BrowserThread*GetCurrentThreadIdentifier* |
| 112 | 112 |
| 113 # BrowserThread accesses MessageLoop::current() in ::CurrentlyOn. | 113 # BrowserThread accesses MessageLoop::current() in ::CurrentlyOn. |
| 114 # We can't use suppressions to hide these reports since the concurrent stack | 114 # We can't use suppressions to hide these reports since the concurrent stack |
| 115 # is simply "base::Thread::ThreadMain" | 115 # is simply "base::Thread::ThreadMain" |
| 116 # See http://crbug.com/63678 | 116 # See http://crbug.com/63678 |
| 117 fun_r:*BrowserThread*CurrentlyOn* | 117 fun_r:*BrowserThread*CurrentlyOn* |
| 118 | 118 |
| 119 # zlib is smarter than we are, see http://www.zlib.net/zlib_faq.html#faq36 | 119 # zlib is smarter than we are, see http://www.zlib.net/zlib_faq.html#faq36 |
| 120 fun_r:inflate | 120 fun_r:inflate |
| 121 # zlib-related reports, not investigated yet. See http://crbug.com/70932 |
| 122 fun_r:*remoting*CompressorZlib*Process* |
| 121 | 123 |
| 122 # X11 reads the _XErrorFunction callback in a racey way, see | 124 # X11 reads the _XErrorFunction callback in a racey way, see |
| 123 # http://crbug.com/65278 | 125 # http://crbug.com/65278 |
| 124 fun:XSetErrorHandler | 126 fun:XSetErrorHandler |
| 125 | 127 |
| 126 # TSan doesn't support lockf and hence shared memory locks in this function; | 128 # TSan doesn't support lockf and hence shared memory locks in this function; |
| 127 # http://crbug.com/45083 | 129 # http://crbug.com/45083 |
| 128 fun_r:*base*StatsTable*AddCounter* | 130 fun_r:*base*StatsTable*AddCounter* |
| OLD | NEW |