llvm/compiler-rt/lib/tsan/rtl/tsan_vector_clock.cpp

//===-- tsan_vector_clock.cpp ---------------------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
//
// This file is a part of ThreadSanitizer (TSan), a race detector.
//
//===----------------------------------------------------------------------===//
#include "tsan_vector_clock.h"

#include "sanitizer_common/sanitizer_placement_new.h"
#include "tsan_mman.h"

namespace __tsan {

#if TSAN_VECTORIZE
const uptr kVectorClockSize =;
#endif

VectorClock::VectorClock() {}

void VectorClock::Reset() {}

void VectorClock::Acquire(const VectorClock* src) {}

static VectorClock* AllocClock(VectorClock** dstp) {}

void VectorClock::Release(VectorClock** dstp) const {}

void VectorClock::ReleaseStore(VectorClock** dstp) const {}

VectorClock& VectorClock::operator=(const VectorClock& other) {}

void VectorClock::ReleaseStoreAcquire(VectorClock** dstp) {}

void VectorClock::ReleaseAcquire(VectorClock** dstp) {}

}  // namespace __tsan