mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-12-03 04:50:29 +00:00
CPU: Move EOI call to the end of handle_interrupt()
This commit is contained in:
parent
1bc7ba8df8
commit
f7b207c7ae
Notes:
sideshowbarker
2024-07-19 08:09:43 +09:00
Author: https://github.com/supercomputer7 Commit: https://github.com/SerenityOS/serenity/commit/f7b207c7ae9 Pull-request: https://github.com/SerenityOS/serenity/pull/1361 Reviewed-by: https://github.com/awesomekling
1 changed files with 1 additions and 1 deletions
|
@ -655,8 +655,8 @@ void handle_interrupt(RegisterState regs)
|
|||
ASSERT(s_interrupt_handler[irq]);
|
||||
s_interrupt_handler[irq]->handle_interrupt(regs);
|
||||
s_interrupt_handler[irq]->increment_invoking_counter();
|
||||
s_interrupt_handler[irq]->eoi();
|
||||
--g_in_irq;
|
||||
s_interrupt_handler[irq]->eoi();
|
||||
}
|
||||
|
||||
void sse_init()
|
||||
|
|
Loading…
Reference in a new issue