diff options
Diffstat (limited to 'Kernel/Arch')
-rw-r--r-- | Kernel/Arch/aarch64/Interrupts.cpp | 2 | ||||
-rw-r--r-- | Kernel/Arch/x86/common/Interrupts.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Kernel/Arch/aarch64/Interrupts.cpp b/Kernel/Arch/aarch64/Interrupts.cpp index 0a0a82f546..8a49bfb120 100644 --- a/Kernel/Arch/aarch64/Interrupts.cpp +++ b/Kernel/Arch/aarch64/Interrupts.cpp @@ -37,7 +37,7 @@ extern "C" void handle_interrupt(TrapFrame const* const) auto* handler = s_interrupt_handlers[irq]; VERIFY(handler); - handler->increment_invoking_counter(); + handler->increment_call_count(); handler->handle_interrupt(regs); handler->eoi(); diff --git a/Kernel/Arch/x86/common/Interrupts.cpp b/Kernel/Arch/x86/common/Interrupts.cpp index 1e31440cb3..fcbb630c7c 100644 --- a/Kernel/Arch/x86/common/Interrupts.cpp +++ b/Kernel/Arch/x86/common/Interrupts.cpp @@ -509,7 +509,7 @@ void handle_interrupt(TrapFrame* trap) handler = s_interrupt_handler[irq]; } VERIFY(handler); - handler->increment_invoking_counter(); + handler->increment_call_count(); handler->handle_interrupt(regs); handler->eoi(); } |