diff options
author | Freya Murphy <freya@freyacat.org> | 2025-04-25 11:20:08 -0400 |
---|---|---|
committer | Freya Murphy <freya@freyacat.org> | 2025-04-25 11:20:08 -0400 |
commit | 228366dcf517266097a77b846efe2c2364a10fa3 (patch) | |
tree | 619fba7611f01326a51bf9cb874a8d5459ce51f1 /kernel/procs.c | |
parent | fix physalloc edge case (diff) | |
download | comus-228366dcf517266097a77b846efe2c2364a10fa3.tar.gz comus-228366dcf517266097a77b846efe2c2364a10fa3.tar.bz2 comus-228366dcf517266097a77b846efe2c2364a10fa3.zip |
syscall_return fn
Diffstat (limited to '')
-rw-r--r-- | kernel/procs.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/kernel/procs.c b/kernel/procs.c index 9cde22f..8cd44a4 100644 --- a/kernel/procs.c +++ b/kernel/procs.c @@ -472,4 +472,6 @@ void dispatch(void) // set the process up for success current_pcb->state = PROC_STATE_RUNNING; current_pcb->ticks = 3; // ticks per process + + syscall_return(); } |