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:
parent
6f6211c5e6
commit
04b1d32b70
4 changed files with 14 additions and 15 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue