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

Interrupts: Add an interface to determine if SMP is enabled

This commit is contained in:
Liav A 2020-03-09 16:55:30 +02:00 committed by Andreas Kling
parent e880fe0765
commit a0a7204915

View file

@ -51,6 +51,8 @@ public:
virtual void switch_to_pic_mode();
virtual void switch_to_ioapic_mode();
bool smp_enabled() const { return m_smp_enabled; }
RefPtr<IRQController> get_responsible_irq_controller(u8 interrupt_vector);
Vector<RefPtr<ISAInterruptOverrideMetadata>> isa_overrides();