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

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

Issue 185303015: TSan/Win: stop instrumenting memset() (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 6 years, 9 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 Windows. 2 # which should be ignored (i.e. not instrumented) by ThreadSanitizer on Windows.
3 3
4 # We ignore security libraries for now since their instrumentation is very slow. 4 # We ignore security libraries for now since their instrumentation is very slow.
5 # TODO(timurrrr): investigate whether we need to instrument them 5 # TODO(timurrrr): investigate whether we need to instrument them
6 obj:*CRYPT32.dll 6 obj:*CRYPT32.dll
7 obj:*RPCRT4.dll 7 obj:*RPCRT4.dll
8 fun_r:*SHA256* 8 fun_r:*SHA256*
9 fun_r:*BCryptGenerateSymmetricKey* 9 fun_r:*BCryptGenerateSymmetricKey*
10 fun_r:*CryptAcquireContext* 10 fun_r:*CryptAcquireContext*
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
59 fun_r:_flsbuf 59 fun_r:_flsbuf
60 fun_r:_unlock_file 60 fun_r:_unlock_file
61 fun_r:_getstream 61 fun_r:_getstream
62 fun_r:_open_osfhandle 62 fun_r:_open_osfhandle
63 63
64 # http://crbug.com/272065 64 # http://crbug.com/272065
65 obj:*NLAapi.dll 65 obj:*NLAapi.dll
66 66
67 # Presumably atomic-based optimization in the system allocator. 67 # Presumably atomic-based optimization in the system allocator.
68 fun_r:_heap_alloc_dbg_impl 68 fun_r:_heap_alloc_dbg_impl
69
70 # http://crbug.com/348908 - looks like TSan doesn't
71 # intercept memset() from VS2013 CRT.
72 fun_r:memset
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