Open SCAP Library
Main Page
Related Pages
Modules
Data Structures
Files
File List
Globals
src
common
debug_priv.h
Go to the documentation of this file.
1
5
/*
6
* Copyright 2011 Red Hat Inc., Durham, North Carolina.
7
* All Rights Reserved.
8
*
9
* This library is free software; you can redistribute it and/or
10
* modify it under the terms of the GNU Lesser General Public
11
* License as published by the Free Software Foundation; either
12
* version 2.1 of the License, or (at your option) any later version.
13
*
14
* This library is distributed in the hope that it will be useful,
15
* but WITHOUT ANY WARRANTY; without even the implied warranty of
16
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17
* Lesser General Public License for more details.
18
*
19
* You should have received a copy of the GNU Lesser General Public
20
* License along with this library; if not, write to the Free Software
21
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22
*
23
* Authors:
24
* Daniel Kopecek <dkopecek@redhat.com>
25
* Peter Vrabec <pvrabec@redhat.com>
26
*/
27
28
#pragma once
29
#ifndef OSCAP_DEBUG_PRIV_H_
30
#define OSCAP_DEBUG_PRIV_H_
31
32
#include <assert.h>
33
#include <stdlib.h>
34
#include <stddef.h>
35
#include <stdarg.h>
36
#include "util.h"
37
#include "public/oscap_debug.h"
38
39
OSCAP_HIDDEN_START;
40
49
#ifndef OSCAP_DEBUG_PATHSTRIP_ENV
50
# define OSCAP_DEBUG_PATHSTRIP_ENV "OSCAP_DEBUG_PSTRIP"
51
#endif
52
53
54
#define OSCAP_DEBUGOBJ_SEXP 1
55
56
#ifndef _A
57
#define _A(x) assert(x)
58
#endif
59
60
61
# define __dlprintf_wrapper(l, ...) __oscap_dlprintf (l, __FILE__, __PRETTY_FUNCTION__, __LINE__, __VA_ARGS__)
62
73
void
__oscap_dlprintf
(
int
level,
const
char
*file,
const
char
*fn,
size_t
line,
const
char
*fmt, ...);
74
80
# define oscap_dlprintf(l, ...) __dlprintf_wrapper (l, __VA_ARGS__)
81
82
void
__oscap_debuglog_object (
const
char
*file,
const
char
*fn,
size_t
line,
int
objtype,
void
*obj);
83
84
# define dO(type, obj) __oscap_debuglog_object(__FILE__, __PRETTY_FUNCTION__, __LINE__, type, obj)
85
86
87
#define dI(...) oscap_dlprintf(DBG_I, __VA_ARGS__)
88
#define dW(...) oscap_dlprintf(DBG_W, __VA_ARGS__)
89
#define dE(...) oscap_dlprintf(DBG_E, __VA_ARGS__)
90
#define dD(...) oscap_dlprintf(DBG_D, __VA_ARGS__)
91
92
OSCAP_HIDDEN_END;
93
94
#endif
__oscap_dlprintf
void __oscap_dlprintf(int level, const char *file, const char *fn, size_t line, const char *fmt,...)
Version of the oscap_dprintf function with support for debug level.
Definition:
debug.c:220
Generated by
1.8.10