#include "quiche/common/platform/api/quiche_mutex.h"
namespace quiche {
void QuicheMutex::WriterLock() { … }
void QuicheMutex::WriterUnlock() { … }
void QuicheMutex::ReaderLock() { … }
void QuicheMutex::ReaderUnlock() { … }
void QuicheMutex::AssertReaderHeld() const { … }
QuicheReaderMutexLock::QuicheReaderMutexLock(QuicheMutex* lock) : … { … }
QuicheReaderMutexLock::~QuicheReaderMutexLock() { … }
QuicheWriterMutexLock::QuicheWriterMutexLock(QuicheMutex* lock) : … { … }
QuicheWriterMutexLock::~QuicheWriterMutexLock() { … }
}