summaryrefslogtreecommitdiffstats
path: root/tinySAK/src/tsk_debug.c
diff options
context:
space:
mode:
Diffstat (limited to 'tinySAK/src/tsk_debug.c')
-rw-r--r--tinySAK/src/tsk_debug.c76
1 files changed, 76 insertions, 0 deletions
diff --git a/tinySAK/src/tsk_debug.c b/tinySAK/src/tsk_debug.c
new file mode 100644
index 0000000..6ff1bcf
--- /dev/null
+++ b/tinySAK/src/tsk_debug.c
@@ -0,0 +1,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