mirror of
https://review.haiku-os.org/haiku
synced 2025-01-28 01:04:51 +01:00
14 lines
306 B
C
14 lines
306 B
C
|
/*
|
||
|
* Copyright 2011, Michael Lotz, mmlr@mlotz.ch.
|
||
|
* Distributed under the terms of the MIT License.
|
||
|
*/
|
||
|
#ifndef _KERNEL_ARCH_x86_IOAPIC_H
|
||
|
#define _KERNEL_ARCH_x86_IOAPIC_H
|
||
|
|
||
|
struct kernel_args;
|
||
|
|
||
|
void ioapic_map(kernel_args* args);
|
||
|
void ioapic_init(kernel_args* args);
|
||
|
|
||
|
#endif // _KERNEL_ARCH_x86_IOAPIC_H
|