diff options
author | Liav A <liavalb@gmail.com> | 2020-03-20 23:31:13 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-03-24 16:15:33 +0100 |
commit | 3f98a67d75dad311eabc98b2423201c533ed01ef (patch) | |
tree | 4b364a22c96ba94f332de601367138523376b166 | |
parent | 8b38be3072f20efb982f85688fe59b9d1e3731e3 (diff) | |
download | serenity-3f98a67d75dad311eabc98b2423201c533ed01ef.zip |
Interrupts: Remove unused methods
-rw-r--r-- | Kernel/Interrupts/GenericInterruptHandler.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Kernel/Interrupts/GenericInterruptHandler.h b/Kernel/Interrupts/GenericInterruptHandler.h index c444040892..61cabf10c1 100644 --- a/Kernel/Interrupts/GenericInterruptHandler.h +++ b/Kernel/Interrupts/GenericInterruptHandler.h @@ -64,8 +64,6 @@ public: void increment_invoking_counter(); protected: - void enable_interrupt_vector(); - void disable_interrupt_vector(); void change_interrupt_number(u8 number); explicit GenericInterruptHandler(u8 interrupt_number); |