summaryrefslogtreecommitdiff
path: root/Kernel/Arch/x86/Interrupts.h
diff options
context:
space:
mode:
authorTimon Kruiper <timonkruiper@gmail.com>2022-05-11 16:54:03 +0200
committerLinus Groh <mail@linusgroh.de>2022-06-02 13:14:12 +0100
commit2fd5e9f7298dd86ddb30e4d75f84cb649077d4b8 (patch)
tree4e62d76341fcea3297b4e1e71affdc85832f4447 /Kernel/Arch/x86/Interrupts.h
parentf1baa56cc8ed81cb68aff9794c6278d3c100a48e (diff)
downloadserenity-2fd5e9f7298dd86ddb30e4d75f84cb649077d4b8.zip
Kernel: Add GenericInterruptHandler.cpp to aarch64 build
This requires us to add an Interrupts.h file in the Kernel/Arch directory, which includes the architecture specific files. The commit also stubs out the functions to be able to compile the aarch64 Kernel.
Diffstat (limited to 'Kernel/Arch/x86/Interrupts.h')
-rw-r--r--Kernel/Arch/x86/Interrupts.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/Kernel/Arch/x86/Interrupts.h b/Kernel/Arch/x86/Interrupts.h
index ef3fe2c85a..2e5ccaab03 100644
--- a/Kernel/Arch/x86/Interrupts.h
+++ b/Kernel/Arch/x86/Interrupts.h
@@ -42,10 +42,7 @@ extern "C" void interrupt_common_asm_entry();
void register_interrupt_handler(u8 number, void (*handler)());
void register_user_callable_interrupt_handler(u8 number, void (*handler)());
-GenericInterruptHandler& get_interrupt_handler(u8 interrupt_number);
-void register_generic_interrupt_handler(u8 number, GenericInterruptHandler&);
void register_disabled_interrupt_handler(u8 number, GenericInterruptHandler& handler);
-void unregister_generic_interrupt_handler(u8 number, GenericInterruptHandler&);
void idt_init();