summaryrefslogtreecommitdiffstats
path: root/tinySAK/src/tsk_debug.c
blob: 6ff1bcfa1f341ea6f51d090b0476d679524b342a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
/*
* Copyright (C) 2009-2010 Mamadou Diop.
*
* Contact: Mamadou Diop <diopmamadou(at)doubango.org>
*	
* This file is part of Open Source Doubango Framework.
*
* DOUBANGO is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*	
* DOUBANGO is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
* GNU General Public License for more details.
*	
* You should have received a copy of the GNU General Public License
* along with DOUBANGO.
*
*/

/**@file tsk_debug.c
 * @brief Utility functions for debugging purpose.
 *
 * @author Mamadou Diop <diopmamadou(at)doubango.org>
 *
 * @date Created: Sat Nov 8 16:54:58 2009 mdiop
 */
#include "tsk_debug.h"

/**@defgroup tsk_debug_group Utility functions for debugging purpose.
*/

#if TSK_HAVE_DEBUG_H
// Nothing to do --> all is up to the end-user application
#else

const void* tsk_debug_arg_data = tsk_null;
tsk_debug_f tsk_debug_info_cb = tsk_null;
tsk_debug_f tsk_debug_warn_cb = tsk_null;
tsk_debug_f tsk_debug_error_cb = tsk_null;
tsk_debug_f tsk_debug_fatal_cb = tsk_null;

void tsk_debug_set_arg_data(const void* arg_data){
	tsk_debug_arg_data = arg_data;
}
const void* tsk_debug_get_arg_data(){
	return tsk_debug_arg_data;
}
void tsk_debug_set_info_cb(tsk_debug_f cb){
	tsk_debug_info_cb = cb;
}
tsk_debug_f tsk_debug_get_info_cb(){
	return tsk_debug_info_cb;
}
void tsk_debug_set_warn_cb(tsk_debug_f cb){
	tsk_debug_warn_cb = cb;
}
tsk_debug_f tsk_debug_get_warn_cb(){
	return tsk_debug_warn_cb;
}
void tsk_debug_set_error_cb(tsk_debug_f cb){
	tsk_debug_error_cb = cb;
}
tsk_debug_f tsk_debug_get_error_cb(){
	return tsk_debug_error_cb;
}
void tsk_debug_set_fatal_cb(tsk_debug_f cb){
	tsk_debug_fatal_cb = cb;
}
tsk_debug_f tsk_debug_get_fatal_cb(){
	return tsk_debug_fatal_cb;
}

#endif /* TSK_HAVE_DEBUG_H */
OpenPOWER on IntegriCloud