Files
magenta/arch/x86_64/include/mango/machine/panic.h
T

13 lines
288 B
C
Raw Normal View History

2024-11-02 11:31:51 +00:00
#ifndef MANGO_X86_64_PANIC_H_
#define MANGO_X86_64_PANIC_H_
2023-04-09 16:35:15 +01:00
2023-05-06 22:18:34 +01:00
#include <stdint.h>
struct ml_cpu_context;
2023-04-09 16:35:15 +01:00
extern void ml_print_cpu_state(struct ml_cpu_context *ctx);
2023-05-06 22:18:34 +01:00
extern void ml_print_stack_trace(uintptr_t ip);
extern void ml_print_stack_trace_irq(struct ml_cpu_context *ctx);
2023-04-09 16:35:15 +01:00
#endif