]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/lib/smartall.h
Lots of cleanups + Christopher Hull's patches
[bacula/bacula] / bacula / src / lib / smartall.h
1 /*
2
3         Definitions for the smart memory allocator
4   
5      Version $Id$
6
7 */
8
9 /*
10    Copyright (C) 2000, 2001, 2002 Kern Sibbald and John Walker
11
12    This program is free software; you can redistribute it and/or
13    modify it under the terms of the GNU General Public License as
14    published by the Free Software Foundation; either version 2 of
15    the License, or (at your option) any later version.
16
17    This program is distributed in the hope that it will be useful,
18    but WITHOUT ANY WARRANTY; without even the implied warranty of
19    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20    General Public License for more details.
21
22    You should have received a copy of the GNU General Public
23    License along with this program; if not, write to the Free
24    Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
25    MA 02111-1307, USA.
26
27  */
28
29
30 #ifdef SMARTALLOC
31
32 extern void *sm_malloc(const char *fname, int lineno, unsigned int nbytes),
33             *sm_calloc(const char *fname, int lineno,
34                 unsigned int nelem, unsigned int elsize),
35             *sm_realloc(const char *fname, int lineno, void *ptr, unsigned int size),
36             *actuallymalloc(unsigned int size),
37             *actuallycalloc(unsigned int nelem, unsigned int elsize),
38             *actuallyrealloc(void *ptr, unsigned int size);
39 extern void sm_free(const char *fname, int lineno, void *fp);
40 extern void actuallyfree(void *cp),
41             sm_dump(bool bufdump), sm_static(int mode);
42 extern void sm_new_owner(const char *fname, int lineno, char *buf);
43
44 #ifdef SMCHECK
45 extern void sm_check(const char *fname, int lineno, bool bufdump);
46 extern int sm_check_rtn(const char *fname, int lineno, bool bufdump);
47 #else
48 #define sm_check(f, l, fl)
49 #define sm_check_rtn(f, l, fl) 1
50 #endif
51
52
53 /* Redefine standard memory allocator calls to use our routines
54    instead. */
55
56 #define free(x)        sm_free(__FILE__, __LINE__, (x))
57 #define cfree(x)       sm_free(__FILE__, __LINE__, (x))
58 #define malloc(x)      sm_malloc(__FILE__, __LINE__, (x))
59 #define calloc(n,e)    sm_calloc(__FILE__, __LINE__, (n), (e))
60 #define realloc(p,x)   sm_realloc(__FILE__, __LINE__, (p), (x))
61
62 #else
63
64 /* If SMARTALLOC is disabled, define its special calls to default to
65    the standard routines.  */
66
67 #define actuallyfree(x)      free(x)
68 #define actuallymalloc(x)    malloc(x)
69 #define actuallycalloc(x,y)  calloc(x,y)
70 #define actuallyrealloc(x,y) realloc(x,y)
71 #define sm_dump(x)
72 #define sm_static(x)
73 #define sm_new_owner(a, b, c)
74 #define sm_malloc(f, l, n) malloc(n)
75
76 #define sm_check(f, l, fl)
77 #define sm_check_rtn(f, l, fl) 1
78
79 extern void *b_malloc();
80 #define malloc(x) b_malloc(__FILE__, __LINE__, (x))                  
81
82
83 #endif