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

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

Issue 8819017: Revert 113169 - Ignore the correct synchronization in __sfp on Mac that isn't handled (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years 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 | tools/valgrind/tsan/suppressions_mac.txt » ('j') | 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 # 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
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
OLDNEW
« no previous file with comments | « no previous file | tools/valgrind/tsan/suppressions_mac.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698