Home
last modified time | relevance | path

Searched refs:TSAN_FLAG (Results 1 – 3 of 3) sorted by relevance

/external/compiler-rt/lib/tsan/rtl/
Dtsan_flags.inc13 #ifndef TSAN_FLAG
14 # error "Define TSAN_FLAG prior to including this file!"
17 // TSAN_FLAG(Type, Name, DefaultValue, Description)
20 TSAN_FLAG(bool, enable_annotations, true,
24 TSAN_FLAG(bool, suppress_equal_stacks, true,
27 TSAN_FLAG(bool, suppress_equal_addresses, true,
31 TSAN_FLAG(bool, report_bugs, true,
33 TSAN_FLAG(bool, report_thread_leaks, true, "Report thread leaks at exit?")
34 TSAN_FLAG(bool, report_destroy_locked, true,
36 TSAN_FLAG(bool, report_mutex_bugs, true,
[all …]
Dtsan_flags.cc39 #define TSAN_FLAG(Type, Name, DefaultValue, Description) Name = DefaultValue; in SetDefaults() macro
41 #undef TSAN_FLAG in SetDefaults()
47 #define TSAN_FLAG(Type, Name, DefaultValue, Description) \ in RegisterTsanFlags() macro
50 #undef TSAN_FLAG in RegisterTsanFlags()
Dtsan_flags.h23 #define TSAN_FLAG(Type, Name, DefaultValue, Description) Type Name; macro
25 #undef TSAN_FLAG