wip: uncrampt the stack thing in the irq

This commit is contained in:
0x35c
2025-11-07 16:58:11 +01:00
parent a3a226ad95
commit bf993baa59
3 changed files with 11 additions and 5 deletions

View File

@ -22,6 +22,6 @@ struct tcb {
struct tcb *next;
};
struct tcb *create_thread(struct pcb *process, void (*routine)(void));
struct tcb *create_thread(struct pcb *process, void (*entry)(void));
void delete_thread(struct tcb *thread);
void switch_thread(struct tcb *thread_to_switch);