blob: 60a05bafef985d6ee54a4f0e70c3dee26b3e0084 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# This file lists the functions, object files and source files
# which should be ignored (i.e. not instrumented) by ThreadSanitizer on Windows.
# We ignore security libraries for now since their instrumentation is very slow.
# TODO(timurrrr): investigate whether we need to instrument them
obj:*CRYPT32.dll*
obj:*RPCRT4.dll*
fun_r:*SHA256*
fun_r:*BCryptGenerateSymmetricKey*
obj:*WINHTTP.dll*
# Benign race on mutex unlock
fun:_Mtxunlock
# Benign race during clock initialization
fun_r:*InitializeClock*
# Some unknown Windows guts
fun_r:Ordinal_*
fun:unnamedImageEntryPoint
# Strange reports on net_unittests, maybe related to raising
# a debug exception by PlatformThread
# TODO(timurrrr): investigate
fun_r:*PlatformThread*SetName*
|