13 lines
288 B
C
13 lines
288 B
C
#ifndef MANGO_X86_64_PANIC_H_
|
|
#define MANGO_X86_64_PANIC_H_
|
|
|
|
#include <stdint.h>
|
|
|
|
struct ml_cpu_context;
|
|
|
|
extern void ml_print_cpu_state(struct ml_cpu_context *ctx);
|
|
extern void ml_print_stack_trace(uintptr_t ip);
|
|
extern void ml_print_stack_trace_irq(struct ml_cpu_context *ctx);
|
|
|
|
#endif
|