blob: 4ad1d07eef144196fa136b9f1682c5f378b10e77 [file] [log] [blame]
Markus Handellf70fbc82020-06-04 00:41:20 +02001/*
2 * Copyright 2020 The WebRTC Project Authors. All rights reserved.
3 *
4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
9 */
10
11#ifndef RTC_BASE_SYNCHRONIZATION_MUTEX_ABSEIL_H_
12#define RTC_BASE_SYNCHRONIZATION_MUTEX_ABSEIL_H_
13
14#include "absl/synchronization/mutex.h"
15#include "rtc_base/thread_annotations.h"
16
17namespace webrtc {
18
19class RTC_LOCKABLE MutexImpl final {
20 public:
21 MutexImpl() = default;
22 MutexImpl(const MutexImpl&) = delete;
23 MutexImpl& operator=(const MutexImpl&) = delete;
24
25 void Lock() RTC_EXCLUSIVE_LOCK_FUNCTION() { mutex_.Lock(); }
Danil Chapovalov4319b162021-01-14 15:02:22 +000026 RTC_WARN_UNUSED_RESULT bool TryLock() RTC_EXCLUSIVE_TRYLOCK_FUNCTION(true) {
Markus Handellf70fbc82020-06-04 00:41:20 +020027 return mutex_.TryLock();
28 }
29 void Unlock() RTC_UNLOCK_FUNCTION() { mutex_.Unlock(); }
30
31 private:
32 absl::Mutex mutex_;
33};
34
35} // namespace webrtc
36
37#endif // RTC_BASE_SYNCHRONIZATION_MUTEX_ABSEIL_H_