We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e6c76c3 commit 7b7e931Copy full SHA for 7b7e931
compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_libcdep.cpp
@@ -26,18 +26,16 @@ Symbolizer *Symbolizer::GetOrInit() {
26
return symbolizer_;
27
}
28
29
-#if SANITIZER_WINDOWS
30
// If the 'symbolize' flag is set to 0, it clears the tools
31
// associated with the symbolizer to prevent unnecessary symbolization and
32
// resource usage. This is necessary because of the late binding of the
33
// overridden method, __asan_default_options().
34
-void Symbolizer::UpdateSymbolizerTools() {
+void Symbolizer::ClearTools() {
35
SpinMutexLock l(&init_mu_);
36
if (!common_flags()->symbolize) {
37
symbolizer_->tools_.clear();
38
39
40
-#endif
41
42
// See sanitizer_symbolizer_markup.cpp.
43
#if !SANITIZER_SYMBOLIZER_MARKUP
0 commit comments