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