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