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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
|
/*
* Copyright (C) 2004-2006, Eric Lund
* http://www.mvpmc.org/
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
/*
* debug.c - functions to produce and control debug output from
* libcmyth routines.
*/
#include <stdio.h>
#include <stdlib.h>
#include <stdarg.h>
#include <refmem_local.h>
#include <cmyth_local.h>
#include "debug.h"
static mvp_debug_ctx_t refmem_debug_ctx = MVP_DEBUG_CTX_INIT("refmem",
REF_DBG_NONE,
NULL);
/*
* refmem_dbg_level(int l)
*
* Scope: PUBLIC
*
* Description
*
* Set the current debug level to the absolute setting 'l'
* permitting all debug messages with a debug level less
* than or equal to 'l' to be displayed.
*
* Return Value:
*
* None.
*/
void
refmem_dbg_level(int l)
{
mvp_dbg_setlevel(&refmem_debug_ctx, l);
}
/*
* refmem_dbg_all()
*
* Scope: PUBLIC
*
* Description
*
* Set the current debug level so that all debug messages are displayed.
*
* Return Value:
*
* None.
*/
void
refmem_dbg_all()
{
mvp_dbg_setlevel(&refmem_debug_ctx, REF_DBG_ALL);
}
/*
* refmem_dbg_none()
*
* Scope: PUBLIC
*
* Description
*
* Set the current debug level so that no debug messages are displayed.
*
* Return Value:
*
* None.
*/
void
refmem_dbg_none()
{
mvp_dbg_setlevel(&refmem_debug_ctx, REF_DBG_NONE);
}
/*
* refmem_dbg()
*
* Scope: PRIVATE (mapped to __refmem_dbg)
*
* Description
*
* Print a debug message of level 'level' on 'stderr' provided that
* the current debug level allows messages of level 'level' to be
* printed.
*
* Return Value:
*
* None.
*/
void
refmem_dbg(int level, char *fmt, ...)
{
va_list ap;
va_start(ap, fmt);
mvp_dbg(&refmem_debug_ctx, level, fmt, ap);
va_end(ap);
}
|