1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 06:17:35 +00:00

Kernel: Rename GenericInterruptHandler "invoking count" to "call count"

This commit is contained in:
Andreas Kling 2022-11-18 21:39:49 +01:00
parent 8a5d2be617
commit 9b3db63e14
7 changed files with 13 additions and 11 deletions

View file

@ -74,7 +74,7 @@ bool SpuriousInterruptHandler::handle_interrupt(RegisterState const& state)
if (m_responsible_irq_controller->get_isr() & (1 << interrupt_number())) {
m_real_irq = true; // remember that we had a real IRQ, when EOI later!
if (m_real_handler->handle_interrupt(state)) {
m_real_handler->increment_invoking_counter();
m_real_handler->increment_call_count();
return true;
}
return false;