File: dmalloc.h

package info (click to toggle)
buici-clock 0.3.7
  • links: PTS
  • area: main
  • in suites: slink
  • size: 736 kB
  • ctags: 840
  • sloc: cpp: 4,551; makefile: 397; sh: 224; yacc: 175; lex: 127
file content (70 lines) | stat: -rw-r--r-- 1,828 bytes parent folder | download | duplicates (9)
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
/* dmalloc.h
   $Id: dmalloc.h,v 1.4 1997/10/18 04:57:33 elf Exp $
   
   written by Marc Singer
   27 May 1997

   This file is part of the project XO.  See the file README for
   more information.

   Copyright (C) 1997 Marc Singer

   This program 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 2 of the
   License, or (at your option) any later version.

   This program 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
   in a file called COPYING along with this program; if not, write to
   the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA
   02139, USA.

   Debugging memory allocator.

*/

#if !defined (__DMALLOC_H__)
#    define   __DMALLOC_H__

/* ----- Includes */

#include "memory.h"

/* ----- Globals */

#ifdef __cplusplus
extern "C" {
#endif

void* _malloc_ (size_t cb, const char*, int);
void* _calloc_ (size_t c, size_t cb, const char*, int);
void* _realloc_ (void* pv, size_t cb, const char*, int);
void  _free_ (void* pv);

void dmalloc_exit (void);
void dmalloc_validate (void);

#ifdef __cplusplus
}
#endif

#ifdef __cplusplus
void* operator new (size_t, const char*, int);
void  operator delete (void*);
#endif

#if !defined (BY_DMALLOC)
# define new		new(__FILE__,__LINE__)
# define calloc(c,cb)	_calloc_((c),(cb),__FILE__,__LINE__)
# define malloc(cb)	_malloc_((cb),__FILE__,__LINE__)
# define realloc(pv,cb)	_realloc_((pv),(cb),__FILE__,__LINE__)
# define free		_free_
#endif


#endif  /* __DMALLOC_H__ */