syscalls: start adding fork syscall, not done yet

This commit is contained in:
2025-07-06 22:49:05 +03:00
parent cbd2c52c20
commit 2a7baf1184
8 changed files with 92 additions and 5 deletions
-2
View File
@@ -13,8 +13,6 @@ uint32_t irq_disable_counter = 0;
uint32_t pid_counter;
uint32_t task_count;
#define KSTACKSIZE 4096
extern void trapret(void);
extern void switchProcess(Process* next);