aboutsummaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorIan Moffett <ian@osmora.org>2024-02-26 00:17:56 -0500
committerIan Moffett <ian@osmora.org>2024-02-26 00:17:56 -0500
commit9c157e2677320ad0dba3df814aa4f9b9760f7afd (patch)
tree9222ae1ca08945c0a83deffb30d94d41ac60a82f /sys
parent764db616aed7d71c4c785659b6398a8bfcaca42e (diff)
kernel/amd64: sched: Send EOI after context switch
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'sys')
-rw-r--r--sys/arch/amd64/amd64/local_intr.S1
1 files changed, 1 insertions, 0 deletions
diff --git a/sys/arch/amd64/amd64/local_intr.S b/sys/arch/amd64/amd64/local_intr.S
index b7b6345..6d69302 100644
--- a/sys/arch/amd64/amd64/local_intr.S
+++ b/sys/arch/amd64/amd64/local_intr.S
@@ -41,5 +41,6 @@ lapic_tmr_isr:
push_trapframe $0
mov %rsp, %rdi
call sched_context_switch
+ call lapic_send_eoi
pop_trapframe
iretq