haiku/headers/private/kernel/arch/riscv64/arch_debug.h

26 lines
454 B
C
Raw Normal View History

/*
* Copyright 2010, Ingo Weinhold, ingo_weinhold@gmx.de.
* Distributed under the terms of the MIT License.
*/
#ifndef _KERNEL_ARCH_RISCV64_DEBUG_H
#define _KERNEL_ARCH_RISCV64_DEBUG_H
#include <SupportDefs.h>
struct kernel_args;
struct arch_debug_registers {
};
void WritePC(addr_t pc);
void DoStackTrace(addr_t fp, addr_t pc);
void WriteTrapInfo();
status_t arch_debug_init_early(kernel_args *args);
#endif // _KERNEL_ARCH_RISCV64_DEBUG_H