diff options
author | Anton Kling <anton@kling.gg> | 2024-02-25 01:45:19 +0100 |
---|---|---|
committer | Anton Kling <anton@kling.gg> | 2024-02-25 01:45:19 +0100 |
commit | 4536dc81b4be9a62328826455664cd6d696df8fb (patch) | |
tree | e67f0b1e76c7d4c8a1366f645550d12069bd0cb0 /kernel/cpu | |
parent | a18da25e7355979d0f26cfd39dc0032172e8b135 (diff) |
IPC: Inform the scheduler the process is waiting for a IPC message
Diffstat (limited to 'kernel/cpu')
-rw-r--r-- | kernel/cpu/int_syscall.s | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/kernel/cpu/int_syscall.s b/kernel/cpu/int_syscall.s index b2c0de9..bda7312 100644 --- a/kernel/cpu/int_syscall.s +++ b/kernel/cpu/int_syscall.s @@ -2,6 +2,7 @@ .global int_syscall .extern syscall_functions int_syscall: +sti push ebp mov ebp,esp push edi |