1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 05:07:35 +00:00

Kernel: Change get_sharing_devices_count() in GenericInterruptHandler

The new method' name is sharing_devices_count().
The Serenity Coding Style tends to not accept the word "get" in
methods' names if possible.
This commit is contained in:
Liav A 2020-02-23 14:14:01 +02:00 committed by Andreas Kling
parent a7d7c0e60c
commit fe664965c2
7 changed files with 8 additions and 8 deletions

View file

@ -51,7 +51,7 @@ public:
size_t get_invoking_count() const { return m_invoking_count; }
virtual size_t get_sharing_devices_count() const = 0;
virtual size_t sharing_devices_count() const = 0;
virtual bool is_shared_handler() const = 0;
virtual bool is_sharing_with_others() const = 0;