mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-30 12:49:19 +00:00
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.
This commit is contained in:
parent
f1baa56cc8
commit
2fd5e9f729
Notes:
sideshowbarker
2024-07-17 22:41:14 +09:00
Author: https://github.com/FireFox317
Commit: 2fd5e9f729
Pull-request: https://github.com/SerenityOS/serenity/pull/14146
Reviewed-by: https://github.com/ADKaster
Reviewed-by: https://github.com/BertalanD
Reviewed-by: https://github.com/Hendiadyoin1
Reviewed-by: https://github.com/nico ✅
9 changed files with 68 additions and 6 deletions
|
@ -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();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue