forked from OpenSIPS/opensips
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmem.h
More file actions
177 lines (161 loc) · 5.58 KB
/
Copy pathmem.h
File metadata and controls
177 lines (161 loc) · 5.58 KB
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
/* $Id$
*
* memory related stuff (malloc & friends)
*
* Copyright (C) 2001-2003 FhG Fokus
*
* This file is part of opensips, a free SIP server.
*
* opensips 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
*
* opensips 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
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
* History:
* --------
* 2003-03-10 __FUNCTION__ is a gcc-ism, defined it to "" for sun cc
* (andrei)
* 2003-03-07 split init_malloc into init_pkg_mallocs & init_shm_mallocs
* (andrei)
*/
#ifndef mem_h
#define mem_h
#include "../config.h"
#include "../dprint.h"
/* fix debug defines, DBG_F_MALLOC <=> DBG_QM_MALLOC */
#ifdef F_MALLOC
#ifdef DBG_F_MALLOC
#ifndef DBG_QM_MALLOC
#define DBG_QM_MALLOC
#endif
#elif defined(DBG_QM_MALLOC)
#define DBG_F_MALLOC
#endif
#endif
#ifdef PKG_MALLOC
# ifdef VQ_MALLOC
# include "vq_malloc.h"
extern struct vqm_block* mem_block;
# elif defined F_MALLOC
# include "f_malloc.h"
extern struct fm_block* mem_block;
# else
# include "q_malloc.h"
extern struct qm_block* mem_block;
# endif
extern char *mem_pool;
#ifdef STATISTICS
#define PKG_TOTAL_SIZE_IDX 0
#define PKG_USED_SIZE_IDX 1
#define PKG_REAL_USED_SIZE_IDX 2
#define PKG_MAX_USED_SIZE_IDX 3
#define PKG_FREE_SIZE_IDX 4
#define PKG_FRAGMENTS_SIZE_IDX 5
typedef unsigned long pkg_status_holder[6];
void set_pkg_stats(pkg_status_holder*);
#else
#define set_pkg_stats( _x )
#define init_pkg_stats( _x ) 0
#endif
# ifdef DBG_QM_MALLOC
#ifdef __SUNPRO_C
#define __FUNCTION__ "" /* gcc specific */
#endif
# ifdef VQ_MALLOC
# define pkg_malloc(s) vqm_malloc(mem_block, (s),__FILE__, \
__FUNCTION__, __LINE__)
# define pkg_free(p) vqm_free(mem_block, (p), __FILE__, \
__FUNCTION__, __LINE__)
# warn "no proper realloc implementation, use another mem. alloc"
# elif defined F_MALLOC
# define pkg_malloc(s) fm_malloc(mem_block, (s),__FILE__, \
__FUNCTION__, __LINE__)
# define pkg_free(p) fm_free(mem_block, (p), __FILE__, \
__FUNCTION__, __LINE__)
# define pkg_realloc(p, s) fm_realloc(mem_block, (p), (s),__FILE__, \
__FUNCTION__, __LINE__)
# define pkg_info(i) fm_info(mem_block,i)
# else
# define pkg_malloc(s) qm_malloc(mem_block, (s),__FILE__, \
__FUNCTION__, __LINE__)
# define pkg_realloc(p, s) qm_realloc(mem_block, (p), (s),__FILE__, \
__FUNCTION__, __LINE__)
# define pkg_free(p) qm_free(mem_block, (p), __FILE__, \
__FUNCTION__, __LINE__)
# define pkg_info(i) qm_info(mem_block,i)
# endif
# else
# ifdef VQ_MALLOC
# define pkg_malloc(s) vqm_malloc(mem_block, (s))
# define pkg_free(p) vqm_free(mem_block, (p))
# elif defined F_MALLOC
# define pkg_malloc(s) fm_malloc(mem_block, (s))
# define pkg_realloc(p, s) fm_realloc(mem_block, (p), (s))
# define pkg_free(p) fm_free(mem_block, (p))
# define pkg_info(i) fm_info(mem_block,i)
# else
# define pkg_malloc(s) qm_malloc(mem_block, (s))
# define pkg_realloc(p, s) qm_realloc(mem_block, (p), (s))
# define pkg_free(p) qm_free(mem_block, (p))
# define pkg_info(i) qm_info(mem_block,i)
# endif
# endif
# ifdef VQ_MALLOC
# define pkg_status() vqm_status(mem_block)
# elif defined F_MALLOC
# define pkg_status() fm_status(mem_block)
# define MY_PKG_GET_SIZE() fm_get_size(mem_block)
# define MY_PKG_GET_USED() fm_get_used(mem_block)
# define MY_PKG_GET_RUSED() fm_get_real_used(mem_block)
# define MY_PKG_GET_MUSED() fm_get_max_real_used(mem_block)
# define MY_PKG_GET_FREE() fm_get_free(mem_block)
# define MY_PKG_GET_FRAGS() fm_get_frags(mem_block)
# else
# define pkg_status() qm_status(mem_block)
# define MY_PKG_GET_SIZE() qm_get_size(mem_block)
# define MY_PKG_GET_USED() qm_get_used(mem_block)
# define MY_PKG_GET_RUSED() qm_get_real_used(mem_block)
# define MY_PKG_GET_MUSED() qm_get_max_real_used(mem_block)
# define MY_PKG_GET_FREE() qm_get_free(mem_block)
# define MY_PKG_GET_FRAGS() qm_get_frags(mem_block)
# endif
#elif defined(SHM_MEM) && defined(USE_SHM_MEM)
# include "shm_mem.h"
# define pkg_malloc(s) shm_malloc((s))
# define pkg_free(p) shm_free((p))
# define pkg_status() shm_status()
# define MY_PKG_GET_SIZE()
# define MY_PKG_GET_USED()
# define MY_PKG_GET_RUSED()
# define MY_PKG_GET_MUSED()
# define MY_PKG_GET_FREE()
# define MY_PKG_GET_FRAGS()
#else
# include <stdlib.h>
void *sys_malloc(size_t, const char *, const char *, int);
void *sys_realloc(void *, size_t, const char *, const char *, int);
void sys_free(void *, const char *, const char *, int);
# define SYSTEM_MALLOC
# define pkg_malloc(s) sys_malloc((s), __FILE__, __FUNCTION__, __LINE__)
# define pkg_realloc(ptr, s) sys_realloc((ptr), (s), __FILE__, __FUNCTION__, __LINE__)
# define pkg_free(p) sys_free((p), __FILE__, __FUNCTION__, __LINE__)
# define pkg_status()
# define MY_PKG_GET_SIZE()
# define MY_PKG_GET_USED()
# define MY_PKG_GET_RUSED()
# define MY_PKG_GET_MUSED()
# define MY_PKG_GET_FREE()
# define MY_PKG_GET_FRAGS()
#endif
int init_pkg_mallocs();
int init_shm_mallocs();
#endif