Fixing scheduling bug

This commit is contained in:
ssimnb 2026-02-20 09:45:49 +01:00
parent a7fd9ac224
commit 7706e629c6
2 changed files with 30 additions and 27 deletions

View file

@ -22,6 +22,7 @@ struct thread {
proc_state state;
uint16_t pid;
struct context *context;
char name[8];
};
void scheduler_init();