13 lines
290 B
C
13 lines
290 B
C
|
|
#ifndef KERNEL_X86_64_PANIC_H_
|
||
|
|
#define KERNEL_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
|