Bug 1615228 - Suppress race with base::Thread::Stop(). r=froydnj

Differential Revision: https://phabricator.services.mozilla.com/D62720

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Christian Holler 2020-02-13 14:27:38 +00:00
Родитель b50347f917
Коммит 57dc730d44
1 изменённых файлов: 5 добавлений и 0 удалений

Просмотреть файл

@ -358,6 +358,11 @@ extern "C" const char* __tsan_default_suppressions() {
"race:init_simd\n" "race:init_simd\n"
"race:simd_support\n" "race:simd_support\n"
"race:jsimd_can_ycc_rgb\n" "race:jsimd_can_ycc_rgb\n"
// Likely benign race in ipc/chromium/ where we set
// `message_loop_` to `NULL` on two threads when stopping
// a thread at the same time it is already finishing.
// See also bug 1615228 for discussion.
"race:base::Thread::Stop\n"
// End of suppressions. // End of suppressions.
; // Please keep this semicolon. ; // Please keep this semicolon.