diff options
author | Pankaj Raghav <p.raghav@samsung.com> | 2023-04-12 22:55:20 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2023-04-25 10:18:39 +0200 |
commit | 8944ca830f02606163fc1afb875f3edf69bc8a66 (patch) | |
tree | e49c1904e847cdc2cfa58f4a6309987081df7a34 /Kernel/Time | |
parent | 756a73471e1ac700c0a7635cffe2166ea2376e36 (diff) | |
download | serenity-8944ca830f02606163fc1afb875f3edf69bc8a66.zip |
Kernel: Remove is_sharing_with_others API from GenericInterruptHandler
is_sharing_with_others API was never really put to use properly since
it was introduced. The only place where it is used in Interrupts.cpp is
in conjuction with is_shared_handler() which is only true for
SharedIRQHandler and is_sharing_with_others will always return false.
Remove that API.
Diffstat (limited to 'Kernel/Time')
-rw-r--r-- | Kernel/Time/HardwareTimer.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Kernel/Time/HardwareTimer.h b/Kernel/Time/HardwareTimer.h index b46fd39c62..537b393488 100644 --- a/Kernel/Time/HardwareTimer.h +++ b/Kernel/Time/HardwareTimer.h @@ -133,7 +133,6 @@ public: virtual size_t sharing_devices_count() const override { return 0; } virtual bool is_shared_handler() const override { return false; } - virtual bool is_sharing_with_others() const override { return false; } virtual HandlerType type() const override { return HandlerType::IRQHandler; } virtual StringView controller() const override { return {}; } virtual bool eoi() override; |