2 * Copyright (c) 2004 Michael Bushkov <bushman@rsu.ru>
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
14 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26 * $FreeBSD: src/usr.sbin/nscd/debug.c,v 1.2 2007/09/27 12:30:11 bushman Exp $
32 static int trace_level = 0;
33 static int trace_level_bk = 0;
36 __trace_in(const char *s, const char *f, int l)
39 if (trace_level < TRACE_WANTED)
41 for (i = 0; i < trace_level; ++i)
51 __trace_point(const char *f, int l)
55 if (trace_level < TRACE_WANTED)
57 for (i = 0; i < trace_level - 1; ++i)
60 printf("= %s: %d\n", f, l);
65 __trace_msg(const char *msg, const char *f, int l)
69 if (trace_level < TRACE_WANTED)
71 for (i = 0; i < trace_level - 1; ++i)
74 printf("= MSG %s, %s: %d\n", msg, f, l);
79 __trace_ptr(const char *desc, const void *p, const char *f, int l)
83 if (trace_level < TRACE_WANTED)
85 for (i = 0; i < trace_level - 1; ++i)
88 printf("= PTR %s: %p, %s: %d\n", desc, p, f, l);
93 __trace_int(const char *desc, int i, const char *f, int l)
97 if (trace_level < TRACE_WANTED)
99 for (j = 0; j < trace_level - 1; ++j)
102 printf("= INT %s: %i, %s: %d\n",desc, i, f, l);
107 __trace_str(const char *desc, const char *s, const char *f, int l)
111 if (trace_level < TRACE_WANTED)
113 for (i = 0; i < trace_level - 1; ++i)
116 printf("= STR %s: '%s', %s: %d\n", desc, s, f, l);
121 __trace_out(const char *s, const char *f, int l)
126 if (trace_level < TRACE_WANTED)
128 for (i = 0; i < trace_level; ++i)
131 printf("<= %s\n", s);
138 trace_level = trace_level_bk;
145 trace_level_bk = trace_level;