Skip to content

Commit

Permalink
Bug 1754474 - Add a suppresion for the Glean init thread. r=decoder
Browse files Browse the repository at this point in the history
The init/shutdown sequence and its threads
are being re-evaluated as part of bug 1755449

Depends on D138466

Differential Revision: https://phabricator.services.mozilla.com/D138767
  • Loading branch information
Dexterp37 committed Feb 15, 2022
1 parent f8895dc commit 5397cfd
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions mozglue/build/TsanOptions.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -296,6 +296,11 @@ extern "C" const char* __tsan_default_suppressions() {
"race:js::wasm::Code::setTier2\n"
"race:js::wasm::Code::setAndBorrowTier2\n"

// Bug 1755449
// The Glean init thread is used to perform I/O and other blocking operations.
// It is never joined with the main thread, but this is being re-evaluated.
"thread:glean::initialize\n"

// End of suppressions.
; // Please keep this semicolon.
}
Expand Down

0 comments on commit 5397cfd

Please sign in to comment.