~ubuntu-branches/ubuntu/karmic/pdnsd/karmic

« back to all changes in this revision

Viewing changes to src/debug.h

  • Committer: Bazaar Package Importer
  • Author(s): Takuo KITAME
  • Date: 2002-04-07 02:30:11 UTC
  • Revision ID: james.westby@ubuntu.com-20020407023011-6zzd1y8a8tk5fz97
Tags: upstream-1.1.7
ImportĀ upstreamĀ versionĀ 1.1.7

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* debug.h - Various debugging facilities
 
2
 * Copyright (C) 2001 Thomas Moestl
 
3
 *
 
4
 * This file is part of the pdnsd package.
 
5
 *
 
6
 * Redistribution and use in source and binary forms, with or without
 
7
 * modification, are permitted provided that the following conditions
 
8
 * are met:
 
9
 * 1. Redistributions of source code must retain the above copyright
 
10
 *    notice, this list of conditions and the following disclaimer.
 
11
 * 2. Redistributions in binary form must reproduce the above copyright
 
12
 *    notice, this list of conditions and the following disclaimer in the
 
13
 *    documentation and/or other materials provided with the distribution.
 
14
 *
 
15
 * THIS SOFTWARE IS PROVIDED BY THE AUTHORS ``AS IS'' AND ANY EXPRESS OR
 
16
 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
 
17
 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
 
18
 * IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
 
19
 * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
 
20
 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
 
21
 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
 
22
 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
 
23
 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
 
24
 * USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 
25
 */
 
26
 
 
27
/* $Id: debug.h,v 1.1 2001/04/12 18:50:12 tmm Exp $ */
 
28
 
 
29
#ifndef DEBUG_H
 
30
#define DEBUG_H
 
31
 
 
32
/*
 
33
 * A hand-rolled alloc debug factility, because most available libraries have
 
34
 * problems with at least one thread implementation.
 
35
 */
 
36
#ifdef ALLOC_DEBUG
 
37
void *DBGcalloc(size_t n, size_t sz, char *file, int line);
 
38
void *DBGmalloc(size_t sz, char *file, int line);
 
39
void *DBGrealloc(void *ptr, size_t sz, char *file, int line);
 
40
void DBGfree(void *ptr, char *file, int line);
 
41
 
 
42
#define pdnsd_calloc(n,sz)      DBGcalloc(n,sz,__FILE__,__LINE__)
 
43
#define pdnsd_malloc(sz)        DBGmalloc(sz,__FILE__,__LINE__)
 
44
#define pdnsd_realloc(ptr,sz)   DBGrealloc(ptr,sz,__FILE__,__LINE__)
 
45
#define pdnsd_free(ptr)         DBGfree(ptr,__FILE__,__LINE__)
 
46
#else
 
47
#define pdnsd_calloc    calloc
 
48
#define pdnsd_malloc    malloc
 
49
#define pdnsd_realloc   realloc
 
50
#define pdnsd_free      free
 
51
#endif
 
52
 
 
53
#endif /* def DEBUG_H */