Add stack frame to panic

This commit is contained in:
ssimnb 2026-02-01 14:55:30 +01:00
parent b337e5193b
commit cfcb806ebf
16 changed files with 169 additions and 103 deletions

View file

@ -13,8 +13,9 @@ typedef struct cpu_state {
proc process_list[PROC_MAX];
proc *current_process;
uint16_t process_count;
context scheduler_context;
}__attribute((packed))cpu_state;
context *scheduler_context;
bool scheduler_initialized;
}cpu_state;
void smp_init();
cpu_state *get_cpu_struct();