x86_64: rename struct cpu_context; move to machine/cpu.h

This commit is contained in:
2026-02-08 11:32:09 +00:00
parent c04b33647c
commit 564d4f9ba0
5 changed files with 23 additions and 21 deletions
+3 -3
View File
@@ -3,10 +3,10 @@
#include <stdint.h>
struct cpu_context;
struct ml_cpu_context;
extern void ml_print_cpu_state(struct cpu_context *ctx);
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 cpu_context *ctx);
extern void ml_print_stack_trace_irq(struct ml_cpu_context *ctx);
#endif