From d94ffac4a584dc7a4f6f2ec567b8caab05ce9253 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Wed, 6 May 2020 19:04:05 +0200 Subject: New build parameters and shared includes This changes many files but I've just applied some replace commands.. So - nothing special! --- src/kernel/interrupts/interrupts.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/kernel/interrupts/interrupts.h') diff --git a/src/kernel/interrupts/interrupts.h b/src/kernel/interrupts/interrupts.h index 6651cfd..f7b5846 100644 --- a/src/kernel/interrupts/interrupts.h +++ b/src/kernel/interrupts/interrupts.h @@ -40,13 +40,13 @@ void isrs_install(); */ typedef void (*irq_handler_t)(struct regs *); -void isr_install_handler(size_t isr, irq_handler_t handler); +void isr_install_handler(u32 isr, irq_handler_t handler); /** * Uninstall a handler by index * @param irq The index of the IRQ routine that should be removed */ -void isr_uninstall_handler(size_t isr); +void isr_uninstall_handler(u32 isr); /** * Initialize the Interrupt Requests by mapping the ISRs to the correct -- cgit v1.2.3