| 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 on Mac OS. | 2 # which should be ignored (i.e. not instrumented) by ThreadSanitizer on Mac OS. |
| 3 # At the moment the Chromium binaries' debug info is not available to | 3 # At the moment the Chromium binaries' debug info is not available to |
| 4 # ThreadSanitizer, so we have to define fun:* rules for Mac OS complementing | 4 # ThreadSanitizer, so we have to define fun:* rules for Mac OS complementing |
| 5 # the src:* rules defined for Linux. | 5 # the src:* rules defined for Linux. |
| 6 | 6 |
| 7 # we ignore the Security libraries for now since | 7 # we ignore the Security libraries for now since |
| 8 # their instrumentation is very slow. | 8 # their instrumentation is very slow. |
| 9 # TODO(timurrrr): investigate whether we need to instrument them | 9 # TODO(timurrrr): investigate whether we need to instrument them |
| 10 obj:*/Security* | 10 obj:*/Security* |
| (...skipping 18 matching lines...) Expand all Loading... |
| 29 fun_r:__CFFinalizeRunLoop | 29 fun_r:__CFFinalizeRunLoop |
| 30 | 30 |
| 31 # _cthread_fork_child() is called in the child process after the fork syscall. | 31 # _cthread_fork_child() is called in the child process after the fork syscall. |
| 32 # This function cleans up the cthread data structures created in the parent, | 32 # This function cleans up the cthread data structures created in the parent, |
| 33 # so ThreadSanitizer might consider it racey. | 33 # so ThreadSanitizer might consider it racey. |
| 34 fun_r:_cthread_fork_child | 34 fun_r:_cthread_fork_child |
| 35 | 35 |
| 36 # False reports on Snow Leopard. | 36 # False reports on Snow Leopard. |
| 37 fun_r: _pthread_exit | 37 fun_r: _pthread_exit |
| 38 fun_r: _dispatch_queue_drain | 38 fun_r: _dispatch_queue_drain |
| 39 | |
| 40 # See http://crbug.com/106197 | |
| 41 fun_r: __sfp | |
| OLD | NEW |