mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-01 05:39:11 +00:00
Kernel: Rename GenericInterruptHandler "invoking count" to "call count"
This commit is contained in:
parent
8a5d2be617
commit
9b3db63e14
Notes:
sideshowbarker
2024-07-17 04:20:56 +09:00
Author: https://github.com/awesomekling
Commit: 9b3db63e14
Pull-request: https://github.com/SerenityOS/serenity/pull/16113
Reviewed-by: https://github.com/Hendiadyoin1
Reviewed-by: https://github.com/supercomputer7 ✅
7 changed files with 13 additions and 11 deletions
|
@ -74,7 +74,7 @@ bool SharedIRQHandler::handle_interrupt(RegisterState const& regs)
|
|||
for (auto& handler : m_handlers) {
|
||||
dbgln_if(INTERRUPT_DEBUG, "Going for Interrupt Handling @ {}, Shared Interrupt {}", i, interrupt_number());
|
||||
if (handler.handle_interrupt(regs)) {
|
||||
handler.increment_invoking_counter();
|
||||
handler.increment_call_count();
|
||||
was_handled = true;
|
||||
}
|
||||
dbgln_if(INTERRUPT_DEBUG, "Going for Interrupt Handling @ {}, Shared Interrupt {} - End", i, interrupt_number());
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue