chromium/v8/src/heap/cppgc/heap-state.cc

// Copyright 2021 the V8 project 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 "include/cppgc/heap-state.h"

#include "src/heap/cppgc/heap-base.h"

namespace cppgc {
namespace subtle {

// static
bool HeapState::IsMarking(const HeapHandle& heap_handle) {}

// static
bool HeapState::IsSweeping(const HeapHandle& heap_handle) {}

// static
bool HeapState::IsSweepingOnOwningThread(const HeapHandle& heap_handle) {}

// static
bool HeapState::IsInAtomicPause(const HeapHandle& heap_handle) {}

// static
bool HeapState::PreviousGCWasConservative(const HeapHandle& heap_handle) {}

}  // namespace subtle
}  // namespace cppgc