OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 // This file contains the default suppressions for ThreadSanitizer. | 5 // This file contains the default suppressions for ThreadSanitizer. |
6 // You can also pass additional suppressions via TSAN_OPTIONS: | 6 // You can also pass additional suppressions via TSAN_OPTIONS: |
7 // TSAN_OPTIONS=suppressions=/path/to/suppressions. Please refer to | 7 // TSAN_OPTIONS=suppressions=/path/to/suppressions. Please refer to |
8 // http://dev.chromium.org/developers/testing/threadsanitizer-tsan-v2 | 8 // http://dev.chromium.org/developers/testing/threadsanitizer-tsan-v2 |
9 // for more info. | 9 // for more info. |
10 | 10 |
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
120 // http://crbug.com/268924 | 120 // http://crbug.com/268924 |
121 "race:base::g_power_monitor\n" | 121 "race:base::g_power_monitor\n" |
122 "race:base::PowerMonitor::PowerMonitor\n" | 122 "race:base::PowerMonitor::PowerMonitor\n" |
123 "race:base::PowerMonitor::AddObserver\n" | 123 "race:base::PowerMonitor::AddObserver\n" |
124 "race:base::PowerMonitor::RemoveObserver\n" | 124 "race:base::PowerMonitor::RemoveObserver\n" |
125 "race:base::PowerMonitor::IsOnBatteryPower\n" | 125 "race:base::PowerMonitor::IsOnBatteryPower\n" |
126 | 126 |
127 // http://crbug.com/268941 | 127 // http://crbug.com/268941 |
128 "race:tracked_objects::ThreadData::tls_index_\n" | 128 "race:tracked_objects::ThreadData::tls_index_\n" |
129 | 129 |
130 // http://crbug.com/270037 | |
131 "race:gLibCleanupFunctions\n" | |
132 | |
133 // http://crbug.com/272095 | 130 // http://crbug.com/272095 |
134 "race:base::g_top_manager\n" | 131 "race:base::g_top_manager\n" |
135 | 132 |
136 // http://crbug.com/273047 | 133 // http://crbug.com/273047 |
137 "race:base::*::g_lazy_tls_ptr\n" | 134 "race:base::*::g_lazy_tls_ptr\n" |
138 "race:IPC::SyncChannel::ReceivedSyncMsgQueue::lazy_tls_ptr_\n" | 135 "race:IPC::SyncChannel::ReceivedSyncMsgQueue::lazy_tls_ptr_\n" |
139 | 136 |
140 // http://crbug.com/280466 | 137 // http://crbug.com/280466 |
141 "race:content::WebRtcAudioCapturer::SetCapturerSource\n" | 138 "race:content::WebRtcAudioCapturer::SetCapturerSource\n" |
142 | 139 |
(...skipping 175 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
318 // https://crbug.com/459429 | 315 // https://crbug.com/459429 |
319 "race:randomnessPid\n" | 316 "race:randomnessPid\n" |
320 | 317 |
321 // https://crbug.com/454655 | 318 // https://crbug.com/454655 |
322 "race:content::BrowserTestBase::PostTaskToInProcessRendererAndWait\n" | 319 "race:content::BrowserTestBase::PostTaskToInProcessRendererAndWait\n" |
323 | 320 |
324 // End of suppressions. | 321 // End of suppressions. |
325 ; // Please keep this semicolon. | 322 ; // Please keep this semicolon. |
326 | 323 |
327 #endif // THREAD_SANITIZER | 324 #endif // THREAD_SANITIZER |
OLD | NEW |