mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-06 17:48:37 +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
|
@ -36,7 +36,7 @@ ErrorOr<void> SysFSInterrupts::try_generate(KBufferBuilder& builder)
|
|||
TRY(obj.add("controller"sv, handler.controller()));
|
||||
TRY(obj.add("cpu_handler"sv, 0)); // FIXME: Determine the responsible CPU for each interrupt handler.
|
||||
TRY(obj.add("device_sharing"sv, (unsigned)handler.sharing_devices_count()));
|
||||
TRY(obj.add("call_count"sv, (unsigned)handler.get_invoking_count()));
|
||||
TRY(obj.add("call_count"sv, handler.call_count()));
|
||||
TRY(obj.finish());
|
||||
return {};
|
||||
})();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue