00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024 #ifdef __cplusplus
00025 extern "C" {
00026 #endif
00027
00028 #ifndef _ASTERISK_ASTMM_H
00029 #define _ASTERISK_ASTMM_H
00030
00031 #ifndef STANDALONE
00032
00033 #define __AST_DEBUG_MALLOC
00034
00035 #include "asterisk.h"
00036
00037
00038 #include <sys/types.h>
00039 #include <stdlib.h>
00040 #include <string.h>
00041 #include <stdio.h>
00042 #include <stdarg.h>
00043
00044
00045 #undef malloc
00046 #undef calloc
00047 #undef realloc
00048 #undef strdup
00049 #undef strndup
00050 #undef asprintf
00051 #undef vasprintf
00052 #undef free
00053
00054 void *__ast_calloc(size_t nmemb, size_t size, const char *file, int lineno, const char *func);
00055 void *__ast_calloc_cache(size_t nmemb, size_t size, const char *file, int lineno, const char *func);
00056 void *__ast_malloc(size_t size, const char *file, int lineno, const char *func);
00057 void __ast_free(void *ptr, const char *file, int lineno, const char *func);
00058 void *__ast_realloc(void *ptr, size_t size, const char *file, int lineno, const char *func);
00059 char *__ast_strdup(const char *s, const char *file, int lineno, const char *func);
00060 char *__ast_strndup(const char *s, size_t n, const char *file, int lineno, const char *func);
00061 int __ast_asprintf(const char *file, int lineno, const char *func, char **strp, const char *format, ...)
00062 __attribute__((format(printf, 5, 6)));
00063 int __ast_vasprintf(char **strp, const char *format, va_list ap, const char *file, int lineno, const char *func)
00064 __attribute__((format(printf, 2, 0)));
00065 void __ast_mm_init(void);
00066
00067
00068
00069 #define calloc(a,b) \
00070 __ast_calloc(a,b,__FILE__, __LINE__, __PRETTY_FUNCTION__)
00071
00072 #define ast_calloc(a,b) \
00073 __ast_calloc(a,b,__FILE__, __LINE__, __PRETTY_FUNCTION__)
00074
00075 #define ast_calloc_cache(a,b) \
00076 __ast_calloc_cache(a,b,__FILE__, __LINE__, __PRETTY_FUNCTION__)
00077
00078 #define malloc(a) \
00079 __ast_malloc(a,__FILE__, __LINE__, __PRETTY_FUNCTION__)
00080
00081 #define ast_malloc(a) \
00082 __ast_malloc(a,__FILE__, __LINE__, __PRETTY_FUNCTION__)
00083
00084 #define free(a) \
00085 __ast_free(a,__FILE__, __LINE__, __PRETTY_FUNCTION__)
00086
00087 #define ast_free(a) \
00088 __ast_free(a,__FILE__, __LINE__, __PRETTY_FUNCTION__)
00089
00090 #define realloc(a,b) \
00091 __ast_realloc(a,b,__FILE__, __LINE__, __PRETTY_FUNCTION__)
00092
00093 #define ast_realloc(a,b) \
00094 __ast_realloc(a,b,__FILE__, __LINE__, __PRETTY_FUNCTION__)
00095
00096 #define strdup(a) \
00097 __ast_strdup(a,__FILE__, __LINE__, __PRETTY_FUNCTION__)
00098
00099 #define ast_strdup(a) \
00100 __ast_strdup(a,__FILE__, __LINE__, __PRETTY_FUNCTION__)
00101
00102 #define strndup(a,b) \
00103 __ast_strndup(a,b,__FILE__, __LINE__, __PRETTY_FUNCTION__)
00104
00105 #define ast_strndup(a,b) \
00106 __ast_strndup(a,b,__FILE__, __LINE__, __PRETTY_FUNCTION__)
00107
00108 #define asprintf(a, b, c...) \
00109 __ast_asprintf(__FILE__, __LINE__, __PRETTY_FUNCTION__, a, b, c)
00110
00111 #define ast_asprintf(a, b, c...) \
00112 __ast_asprintf(__FILE__, __LINE__, __PRETTY_FUNCTION__, a, b, c)
00113
00114 #define vasprintf(a,b,c) \
00115 __ast_vasprintf(a,b,c,__FILE__, __LINE__, __PRETTY_FUNCTION__)
00116
00117 #define ast_vasprintf(a,b,c) \
00118 __ast_vasprintf(a,b,c,__FILE__, __LINE__, __PRETTY_FUNCTION__)
00119
00120 #endif
00121
00122 #else
00123 #error "NEVER INCLUDE astmm.h DIRECTLY!!"
00124 #endif
00125
00126 #ifdef __cplusplus
00127 }
00128 #endif