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