| 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 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 | 121 |
| 122 # X11 reads the _XErrorFunction callback in a racey way, see | 122 # X11 reads the _XErrorFunction callback in a racey way, see |
| 123 # http://crbug.com/65278 | 123 # http://crbug.com/65278 |
| 124 fun:XSetErrorHandler | 124 fun:XSetErrorHandler |
| 125 |
| 126 # TSan doesn't support lockf and hence shared memory locks in this function; |
| 127 # http://crbug.com/45083 |
| 128 fun_r:*base*StatsTable*AddCounter* |
| OLD | NEW |