]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/lib/smartall.h
Add heap stats to Dir and SD -- eliminate #ifdefs
[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 extern uint64_t sm_max_bytes;
30 extern uint64_t sm_bytes;
31 extern uint32_t sm_max_buffers;
32 extern uint32_t sm_buffers;
33
34 #ifdef SMARTALLOC
35
36 extern void *sm_malloc(const char *fname, int lineno, unsigned int nbytes),
37             *sm_calloc(const char *fname, int lineno,
38                 unsigned int nelem, unsigned int elsize),
39             *sm_realloc(const char *fname, int lineno, void *ptr, unsigned int size),
40             *actuallymalloc(unsigned int size),
41             *actuallycalloc(unsigned int nelem, unsigned int elsize),
42             *actuallyrealloc(void *ptr, unsigned int size);
43 extern void sm_free(const char *fname, int lineno, void *fp);
44 extern void actuallyfree(void *cp),
45             sm_dump(bool bufdump), sm_static(int mode);
46 extern void sm_new_owner(const char *fname, int lineno, char *buf);
47
48 #ifdef SMCHECK
49 extern void sm_check(const char *fname, int lineno, bool bufdump);
50 extern int sm_check_rtn(const char *fname, int lineno, bool bufdump);
51 #else
52 #define sm_check(f, l, fl)
53 #define sm_check_rtn(f, l, fl) 1
54 #endif
55
56
57 /* Redefine standard memory allocator calls to use our routines
58    instead. */
59
60 #define free(x)        sm_free(__FILE__, __LINE__, (x))
61 #define cfree(x)       sm_free(__FILE__, __LINE__, (x))
62 #define malloc(x)      sm_malloc(__FILE__, __LINE__, (x))
63 #define calloc(n,e)    sm_calloc(__FILE__, __LINE__, (n), (e))
64 #define realloc(p,x)   sm_realloc(__FILE__, __LINE__, (p), (x))
65
66 #else
67
68 /* If SMARTALLOC is disabled, define its special calls to default to
69    the standard routines.  */
70
71 #define actuallyfree(x)      free(x)
72 #define actuallymalloc(x)    malloc(x)
73 #define actuallycalloc(x,y)  calloc(x,y)
74 #define actuallyrealloc(x,y) realloc(x,y)
75 #define sm_dump(x)
76 #define sm_static(x)
77 #define sm_new_owner(a, b, c)
78 #define sm_malloc(f, l, n) malloc(n)
79
80 #define sm_check(f, l, fl)
81 #define sm_check_rtn(f, l, fl) 1
82
83 extern void *b_malloc();
84 #define malloc(x) b_malloc(__FILE__, __LINE__, (x))                  
85
86
87 #endif