summaryrefslogtreecommitdiff
path: root/chromium/net/third_party/quiche/src/quic/platform/api/quic_mutex.cc
blob: 401feb37f36736cd451097e8265151510565a388 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
// Copyright (c) 2016 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "quic/platform/api/quic_mutex.h"

namespace quic {

void QuicMutex::WriterLock() {
  impl_.WriterLock();
}

void QuicMutex::WriterUnlock() {
  impl_.WriterUnlock();
}

void QuicMutex::ReaderLock() {
  impl_.ReaderLock();
}

void QuicMutex::ReaderUnlock() {
  impl_.ReaderUnlock();
}

void QuicMutex::AssertReaderHeld() const {
  impl_.AssertReaderHeld();
}

QuicReaderMutexLock::QuicReaderMutexLock(QuicMutex* lock) : lock_(lock) {
  lock->ReaderLock();
}

QuicReaderMutexLock::~QuicReaderMutexLock() {
  lock_->ReaderUnlock();
}

QuicWriterMutexLock::QuicWriterMutexLock(QuicMutex* lock) : lock_(lock) {
  lock->WriterLock();
}

QuicWriterMutexLock::~QuicWriterMutexLock() {
  lock_->WriterUnlock();
}

}  // namespace quic