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
commit a0a7204915
Notes: sideshowbarker 2024-07-19 08:14:41 +09:00

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();