1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 10:37:45 +00:00

Kernel: Stub more functions to progress aarch64 build

This commit is contained in:
Timon Kruiper 2022-10-25 18:44:54 +02:00 committed by Gunnar Beutner
parent f9ab02429b
commit 32f4c8df6c
5 changed files with 36 additions and 1 deletions

View file

@ -54,4 +54,9 @@ NonnullLockRefPtr<IRQController> InterruptManagement::get_responsible_irq_contro
return m_interrupt_controllers[0];
}
void InterruptManagement::enumerate_interrupt_handlers(Function<void(GenericInterruptHandler&)>)
{
TODO_AARCH64();
}
}