Files
eden/src/core/hle/kernel/k_trace.h
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
453 B
C++
Raw Normal View History

// SPDX-FileCopyrightText: Copyright 2026 Eden Emulator Project
// SPDX-License-Identifier: GPL-3.0-or-later
// SPDX-FileCopyrightText: Copyright 2021 yuzu Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later
2021-03-19 23:03:57 -07:00
#pragma once
#include "common/literals.h"
2021-03-19 23:03:57 -07:00
namespace Kernel {
using namespace Common::Literals;
2021-03-19 23:03:57 -07:00
constexpr bool IsKTraceEnabled = false;
constexpr std::size_t KTraceBufferSize = IsKTraceEnabled ? 16_MiB : 0;
2021-03-19 23:03:57 -07:00
} // namespace Kernel