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 obj:*/libdbus* |
9 | 10 |
10 # we ignore the whole NSS library for now since | 11 # we ignore the whole NSS library for now since |
11 # its instrumentation is very slow. | 12 # its instrumentation is very slow. |
12 # TODO(timurrrr): investigate whether we need to instrument it | 13 # TODO(timurrrr): investigate whether we need to instrument it |
13 obj:*/libnss* | 14 obj:*/libnss* |
14 obj:*/nss/* | 15 obj:*/nss/* |
15 | 16 |
16 # ignore pulseaudio - We don't have symbols there and it can be slow otherwise | 17 # ignore pulseaudio - We don't have symbols there and it can be slow otherwise |
17 obj:*/libpulse.so* | 18 obj:*/libpulse.so* |
18 | 19 |
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
121 # zlib-related reports, not investigated yet. See http://crbug.com/70932 | 122 # zlib-related reports, not investigated yet. See http://crbug.com/70932 |
122 fun_r:*remoting*CompressorZlib*Process* | 123 fun_r:*remoting*CompressorZlib*Process* |
123 | 124 |
124 # X11 reads the _XErrorFunction callback in a racey way, see | 125 # X11 reads the _XErrorFunction callback in a racey way, see |
125 # http://crbug.com/65278 | 126 # http://crbug.com/65278 |
126 fun:XSetErrorHandler | 127 fun:XSetErrorHandler |
127 | 128 |
128 # TSan doesn't support lockf and hence shared memory locks in this function; | 129 # TSan doesn't support lockf and hence shared memory locks in this function; |
129 # http://crbug.com/45083 | 130 # http://crbug.com/45083 |
130 fun_r:*base*StatsTable*AddCounter* | 131 fun_r:*base*StatsTable*AddCounter* |
OLD | NEW |