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

Kernel: Add Interrupts/IRQHandler.cpp to the aarch64 build

This requires a few stubs such that the compiler won't complain.
This commit is contained in:
Timon Kruiper 2022-05-16 15:19:49 +02:00 committed by Linus Groh
parent a4534678f9
commit d631a3daf6
2 changed files with 11 additions and 0 deletions

View file

@ -146,4 +146,14 @@ u8 InterruptManagement::acquire_mapped_interrupt_number(u8)
VERIFY_NOT_REACHED(); VERIFY_NOT_REACHED();
} }
InterruptManagement& InterruptManagement::the()
{
VERIFY_NOT_REACHED();
}
RefPtr<IRQController> InterruptManagement::get_responsible_irq_controller(u8)
{
VERIFY_NOT_REACHED();
}
} }

View file

@ -452,6 +452,7 @@ else()
Memory/VMObject.cpp Memory/VMObject.cpp
Interrupts/GenericInterruptHandler.cpp Interrupts/GenericInterruptHandler.cpp
Interrupts/IRQHandler.cpp
) )
# Otherwise linker errors e.g undefined reference to `__aarch64_cas8_acq_rel' # Otherwise linker errors e.g undefined reference to `__aarch64_cas8_acq_rel'