From fc6d79e33080c08f4c00d9809abd09fb4cff617f Mon Sep 17 00:00:00 2001 From: Alessio Placitelli Date: Mon, 7 Dec 2020 11:02:42 +0000 Subject: [PATCH] Bug 1680474 - Remove Glean's dispatcher TSAN suppression. r=decoder Even though the Glean dispatcher was shutting down, the SDK was not properly joining on the thread, triggering a TSAN error. This has been addressed in a new version of the Glean SDK. Differential Revision: https://phabricator.services.mozilla.com/D98889 --- mozglue/build/TsanOptions.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/mozglue/build/TsanOptions.cpp b/mozglue/build/TsanOptions.cpp index 0f61a1ec0949..215e5629573c 100644 --- a/mozglue/build/TsanOptions.cpp +++ b/mozglue/build/TsanOptions.cpp @@ -308,9 +308,6 @@ extern "C" const char* __tsan_default_suppressions() { "race:style::traversal::note_children\n" "race:style::matching::MatchMethods::apply_selector_flags\n" - // Bug 1680474 - "thread:glean::dispatcher\n" - // End of suppressions. ; // Please keep this semicolon. }