// Copyright 2013 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "device/base/synchronization/one_writer_seqlock.h" #include "base/threading/platform_thread.h" namespace device { OneWriterSeqLock::OneWriterSeqLock() : … { … } int32_t OneWriterSeqLock::ReadBegin(uint32_t max_retries) const { … } bool OneWriterSeqLock::ReadRetry(int32_t version) const { … } void OneWriterSeqLock::WriteBegin() { … } void OneWriterSeqLock::WriteEnd() { … } } // namespace device