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:*/libfreetype* | 6 obj:*/libfreetype* |
7 obj:*/libdbus* | 7 obj:*/libdbus* |
8 | 8 |
9 # we ignore the whole NSS library for now since | 9 # we ignore the whole NSS library for now since |
10 # its instrumentation is very slow. | 10 # its instrumentation is very slow. |
(...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
179 # fun:MessageLoop::RunTask at the top of the "current" stack which we don't want | 179 # fun:MessageLoop::RunTask at the top of the "current" stack which we don't want |
180 # to suppress. See http://crbug.com/98926 | 180 # to suppress. See http://crbug.com/98926 |
181 fun:*base*debug*TraceLog*GetCategoryInternal* | 181 fun:*base*debug*TraceLog*GetCategoryInternal* |
182 | 182 |
183 # libc threading on GCC 4.6 | 183 # libc threading on GCC 4.6 |
184 fun:arena_thread_freeres | 184 fun:arena_thread_freeres |
185 | 185 |
186 # __strncasecmp_l_ssse3 overreads the buffer causing TSan to report a data race | 186 # __strncasecmp_l_ssse3 overreads the buffer causing TSan to report a data race |
187 # on another object. See http://crbug.com/177074 | 187 # on another object. See http://crbug.com/177074 |
188 fun:*strncasecmp* | 188 fun:*strncasecmp* |
| 189 fun:*strcasecmp* |
OLD | NEW |