1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 16:07:47 +00:00

Kernel: Rename idt_init() to initialize_interrupts()

Also move the function out of the x86/Interrupts.h file into the generic
Interrupts.h file and add a stub for aarch64.
This commit is contained in:
Timon Kruiper 2022-05-17 11:07:02 +02:00 committed by Linus Groh
parent 02b94c6f0e
commit cbe1717181
5 changed files with 9 additions and 4 deletions

View file

@ -21,4 +21,6 @@ GenericInterruptHandler& get_interrupt_handler(u8 interrupt_number);
void register_generic_interrupt_handler(u8 number, GenericInterruptHandler&);
void unregister_generic_interrupt_handler(u8 number, GenericInterruptHandler&);
void initialize_interrupts();
}