OLD | NEW |
1 # There are a few kinds of suppressions in this file. | 1 # There are a few kinds of suppressions in this file. |
2 # 1. third party stuff we have no control over | 2 # 1. third party stuff we have no control over |
3 # | 3 # |
4 # 2. intentional unit test errors, or stuff that is somehow a false positive | 4 # 2. intentional unit test errors, or stuff that is somehow a false positive |
5 # in our own code, or stuff that is so trivial it's not worth fixing | 5 # in our own code, or stuff that is so trivial it's not worth fixing |
6 # | 6 # |
7 # 3. Suppressions for real chromium bugs that are not yet fixed. | 7 # 3. Suppressions for real chromium bugs that are not yet fixed. |
8 # These should all be in chromium's bug tracking system (but a few aren't yet). | 8 # These should all be in chromium's bug tracking system (but a few aren't yet). |
9 # Periodically we should sweep this file and the bug tracker clean by | 9 # Periodically we should sweep this file and the bug tracker clean by |
10 # running overnight and removing outdated bugs/suppressions. | 10 # running overnight and removing outdated bugs/suppressions. |
(...skipping 333 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
344 | 344 |
345 { | 345 { |
346 bug_100026 | 346 bug_100026 |
347 ThreadSanitizer:Race | 347 ThreadSanitizer:Race |
348 ... | 348 ... |
349 fun:std::* | 349 fun:std::* |
350 ... | 350 ... |
351 fun:logging::LogMessage::*LogMessage | 351 fun:logging::LogMessage::*LogMessage |
352 fun:base::PlatformThread::SetThreadPriority | 352 fun:base::PlatformThread::SetThreadPriority |
353 fun:base::SimpleThread::SetThreadPriority | 353 fun:base::SimpleThread::SetThreadPriority |
354 fun:AudioRendererImpl::Run | 354 fun:AudioDevice::Run |
355 } | 355 } |
356 | 356 |
357 ############################ | 357 ############################ |
358 # 2.2 Benign races in Chromium | 358 # 2.2 Benign races in Chromium |
359 { | 359 { |
360 bug_61179 [benign race on tracked_objects::Births] | 360 bug_61179 [benign race on tracked_objects::Births] |
361 ThreadSanitizer:Race | 361 ThreadSanitizer:Race |
362 fun:tracked_objects::Births::*Birth* | 362 fun:tracked_objects::Births::*Birth* |
363 } | 363 } |
364 | 364 |
(...skipping 320 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
685 fun:ChromeMain | 685 fun:ChromeMain |
686 fun:main | 686 fun:main |
687 } | 687 } |
688 { | 688 { |
689 bug_106196 | 689 bug_106196 |
690 ThreadSanitizer:Race | 690 ThreadSanitizer:Race |
691 fun:tracked_objects::ThreadData::InitializeAndSetTrackingStatus | 691 fun:tracked_objects::ThreadData::InitializeAndSetTrackingStatus |
692 fun:ChildThread::OnSetProfilerStatus | 692 fun:ChildThread::OnSetProfilerStatus |
693 fun:DispatchToMethod | 693 fun:DispatchToMethod |
694 } | 694 } |
| 695 { |
| 696 bug_107181 |
| 697 ThreadSanitizer:Race |
| 698 fun:media::AudioRendererAlgorithmBase::set_playback_rate |
| 699 fun:media::AudioRendererAlgorithmOLA::set_playback_rate |
| 700 fun:media::AudioRendererBase::SetPlaybackRate |
| 701 fun:AudioRendererImpl::SetPlaybackRate |
| 702 fun:media::CompositeFilter::SetPlaybackRate |
| 703 fun:media::PipelineImpl::PlaybackRateChangedTask |
| 704 ... |
| 705 fun:base::internal::RunnableAdapter::Run |
| 706 } |
OLD | NEW |