xref: /haiku/src/add-ons/kernel/drivers/timer/int.h (revision 25a7b01d15612846f332751841da3579db313082)
1 /*
2  * Copyright 2003-2010, Axel Dörfler, axeld@pinc-software.de.
3  * Distributed under the terms of the MIT License.
4  *
5  * Copyright 2001-2002, Travis Geiselbrecht. All rights reserved.
6  * Distributed under the terms of the NewOS License.
7  */
8 #ifndef __INT_H
9 #define __INT_H
10 
11 
12 status_t reserve_io_interrupt_vectors(long count, long startVector);
13 status_t allocate_io_interrupt_vectors(long count, long *startVector);
14 void free_io_interrupt_vectors(long count, long startVector);
15 
16 #endif /* __INT_H */
17