diff options
author | Marvin Borner | 2020-05-06 19:04:05 +0200 |
---|---|---|
committer | Marvin Borner | 2020-05-06 19:04:05 +0200 |
commit | d94ffac4a584dc7a4f6f2ec567b8caab05ce9253 (patch) | |
tree | 559cd596a0a407d4b40c1d12d3c6a0686494da16 /src/kernel/interrupts/interrupts.h | |
parent | 1a8563a05608b5b5e27eada44cf4790926001c68 (diff) |
New build parameters and shared includes
This changes many files but I've just applied some replace commands.. So
- nothing special!
Diffstat (limited to 'src/kernel/interrupts/interrupts.h')
-rw-r--r-- | src/kernel/interrupts/interrupts.h | 4 |
1 files changed, 2 insertions, 2 deletions
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 |