diff options
author | Timon Kruiper <timonkruiper@gmail.com> | 2022-05-11 16:54:03 +0200 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2022-06-02 13:14:12 +0100 |
commit | 2fd5e9f7298dd86ddb30e4d75f84cb649077d4b8 (patch) | |
tree | 4e62d76341fcea3297b4e1e71affdc85832f4447 /Kernel/Arch/x86/Interrupts.h | |
parent | f1baa56cc8ed81cb68aff9794c6278d3c100a48e (diff) | |
download | serenity-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.h | 3 |
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(); |