feature: fork added and exit_task is almost working

This commit is contained in:
2025-01-28 13:38:39 +01:00
parent d7626df19c
commit dbdf851dd2
9 changed files with 80 additions and 19 deletions

9
src/multitasking/wait.c Normal file
View File

@ -0,0 +1,9 @@
#include "interrupts.h"
#include "task.h"
u16 wait(void)
{
cli();
toris();
return 0;
}