diff options
author | Liav A <liavalb@gmail.com> | 2020-02-23 14:14:01 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-02-24 11:27:03 +0100 |
commit | fe664965c2e1e89654a74c620f1b9b5653f59864 (patch) | |
tree | 15cd4d5da60e663d791987b30d151f97a5789f79 /Kernel/Interrupts/GenericInterruptHandler.h | |
parent | a7d7c0e60c7cfebbcbd20edf8df3f6897e125bf7 (diff) | |
download | serenity-fe664965c2e1e89654a74c620f1b9b5653f59864.zip |
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.
Diffstat (limited to 'Kernel/Interrupts/GenericInterruptHandler.h')
-rw-r--r-- | Kernel/Interrupts/GenericInterruptHandler.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/Interrupts/GenericInterruptHandler.h b/Kernel/Interrupts/GenericInterruptHandler.h index 3b90830365..8da9df7d86 100644 --- a/Kernel/Interrupts/GenericInterruptHandler.h +++ b/Kernel/Interrupts/GenericInterruptHandler.h @@ -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; |