xref: /haiku/src/system/kernel/debug/debug_variables.h (revision 2b76973fa2401f7a5edf68e6470f3d3210cbcff3)
1 /*
2  * Copyright 2008, Ingo Weinhold, ingo_weinhold@gmx.de
3  * Distributed under the terms of the MIT License.
4  */
5 #ifndef _KERNEL_DEBUG_VARIABLES_H
6 #define _KERNEL_DEBUG_VARIABLES_H
7 
8 #include <SupportDefs.h>
9 
10 
11 #define MAX_DEBUG_VARIABLE_NAME_LEN 24
12 
13 #ifdef __cplusplus
14 extern "C" {
15 #endif
16 
17 void	debug_variables_init();
18 
19 #ifdef __cplusplus
20 }	// extern "C"
21 #endif
22 
23 
24 #endif	// _KERNEL_DEBUG_VARIABLES_H
25