k_debug.h 547 B

1234567891011121314151617181920
  1. // SPDX-FileCopyrightText: Copyright 2022 yuzu Emulator Project
  2. // SPDX-License-Identifier: GPL-2.0-or-later
  3. #pragma once
  4. #include "core/hle/kernel/k_auto_object.h"
  5. #include "core/hle/kernel/slab_helpers.h"
  6. namespace Kernel {
  7. class KDebug final : public KAutoObjectWithSlabHeapAndContainer<KDebug, KAutoObjectWithList> {
  8. KERNEL_AUTOOBJECT_TRAITS(KDebug, KAutoObject);
  9. public:
  10. explicit KDebug(KernelCore& kernel) : KAutoObjectWithSlabHeapAndContainer{kernel} {}
  11. static void PostDestroy(uintptr_t arg) {}
  12. };
  13. } // namespace Kernel