commit | bf5a2fc11bc53a19735dad278990fad0d21e5ec5 | [log] [tgz] |
---|---|---|
author | erikvarga <erikvarga@webrtc.org> | Fri Jun 16 05:02:05 2017 -0700 |
committer | Commit Bot <commit-bot@chromium.org> | Fri Jun 16 12:02:05 2017 +0000 |
tree | f2c86256ea1add114edf197bab827d22f117ef9c | |
parent | bd09ebc71eb49e613e21da289be99afc68fcb071 [diff] |
Use RaceChecker instead of ThreadChecker in a few places. There are some functions in packet_router.cc and modules/congestion_controller that could be used by different threads, but they're protected using rtc::ThreadChecker which doesn't allow them to be called by more than one thread even if the calls are synchronised. This CL replaces those with rtc::RaceChecker, which allows serialized access of the functions from multiple threads. BUG=webrtc:7826 Review-Url: https://codereview.webrtc.org/2940133003 Cr-Commit-Position: refs/heads/master@{#18628}
WebRTC is a free, open software project that provides browsers and mobile applications with Real-Time Communications (RTC) capabilities via simple APIs. The WebRTC components have been optimized to best serve this purpose.
Our mission: To enable rich, high-quality RTC applications to be developed for the browser, mobile platforms, and IoT devices, and allow them all to communicate via a common set of protocols.
The WebRTC initiative is a project supported by Google, Mozilla and Opera, amongst others.
See http://www.webrtc.org/native-code/development for instructions on how to get started developing with the native code.