xref: /haiku/src/add-ons/kernel/drivers/timer/int.h (revision cbe0a0c436162d78cc3f92a305b64918c839d079)
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