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 # Don't instrument code dealing with atomics (base::subtle) | 7 # Don't instrument code dealing with atomics (base::subtle) |
8 fun:*base*subtle*NoBarrier_Load* | 8 fun:*base*subtle*NoBarrier_Load* |
9 fun:*base*subtle*Release_Store* | 9 fun:*base*subtle*Release_Store* |
10 fun:*base*subtle*NoBarrier_Store* | 10 fun:*base*subtle*NoBarrier_Store* |
(...skipping 22 matching lines...) Expand all Loading... |
33 # SensitiveAllocator::free is a part of the Security framework. | 33 # SensitiveAllocator::free is a part of the Security framework. |
34 # It calls bzero (0xffff0633) which can't be resolved and thus should be | 34 # It calls bzero (0xffff0633) which can't be resolved and thus should be |
35 # ignored recursively. | 35 # ignored recursively. |
36 fun_r:*SensitiveAllocator*free* | 36 fun_r:*SensitiveAllocator*free* |
37 | 37 |
38 # The CFBag and CFDictionary operators should be thread-safe, but they are not | 38 # The CFBag and CFDictionary operators should be thread-safe, but they are not |
39 # annotated properly. | 39 # annotated properly. |
40 # TODO(glider): replace all the CoreFoundation suppressions with ignores. | 40 # TODO(glider): replace all the CoreFoundation suppressions with ignores. |
41 fun_r:CFBag* | 41 fun_r:CFBag* |
42 fun_r:CFDictionary* | 42 fun_r:CFDictionary* |
| 43 |
| 44 # see crbug.com/46138 |
| 45 fun_r:__CFRunLoopDeallocate |
OLD | NEW |