1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 05:47:34 +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

@ -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 {};
})();