Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(327)

Side by Side Diff: tools/valgrind/tsan/ignores_mac.txt

Issue 2728003: Ignore __CFRunLoopDeallocate under TSan on Mac (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 10 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698