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

Kernel: Stop using 'int's for indices in interrupt handling

This commit is contained in:
Idan Horowitz 2022-09-25 15:29:24 +03:00
parent 6f6211c5e6
commit 04b1d32b70
4 changed files with 14 additions and 15 deletions

View file

@ -60,7 +60,7 @@ public:
u8 get_irq_vector(u8 mapped_interrupt_vector);
void enumerate_interrupt_handlers(Function<void(GenericInterruptHandler&)>);
IRQController& get_interrupt_controller(int index);
IRQController& get_interrupt_controller(size_t index);
protected:
virtual ~InterruptManagement() = default;