xref: /haiku/headers/private/kernel/arch/x86/ioapic.h (revision 21258e2674226d6aa732321b6f8494841895af5f)
1 /*
2  * Copyright 2011, Michael Lotz, mmlr@mlotz.ch.
3  * Distributed under the terms of the MIT License.
4  */
5 #ifndef _KERNEL_ARCH_x86_IOAPIC_H
6 #define _KERNEL_ARCH_x86_IOAPIC_H
7 
8 #include <SupportDefs.h>
9 
10 struct kernel_args;
11 
12 bool ioapic_is_interrupt_available(int32 gsi);
13 
14 void ioapic_init(kernel_args* args);
15 
16 #endif // _KERNEL_ARCH_x86_IOAPIC_H
17