mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-20 00:08:55 +00:00
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.
This commit is contained in:
parent
756a73471e
commit
8944ca830f
Notes:
sideshowbarker
2024-07-17 02:59:43 +09:00
Author: https://github.com/Panky-codes
Commit: 8944ca830f
Pull-request: https://github.com/SerenityOS/serenity/pull/18301
Reviewed-by: https://github.com/awesomekling
Reviewed-by: https://github.com/supercomputer7 ✅
8 changed files with 2 additions and 10 deletions
|
@ -31,7 +31,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 m_shared_with_others; }
|
||||
void set_shared_with_others(bool status) { m_shared_with_others = status; }
|
||||
|
||||
protected:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue