syscalls: start trying to add nanosleep syscall

This commit is contained in:
2025-09-02 00:15:29 +03:00
parent a459751453
commit 5b922ea773
4 changed files with 38 additions and 1 deletions
+1
View File
@@ -70,6 +70,7 @@ typedef struct Process
void* brk;
uint32_t kstack_top;
size_t wake_up_time;//wake up time in ticks of the processor, gets set by nanosleep syscall
} Process;
extern Process* current;