aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2003-05-08 18:51:06 +0000
committermarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2003-05-08 18:51:06 +0000
commit79cec24da76ba3cab80652f3262fdaedb47b8b88 (patch)
tree536a3ecf0ba8187af4e1de2b120635db26b23df2
parent143253db076260787c70cca2944c7edc3f70b0ad (diff)
Add astmm
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@982 f38db490-d61c-443f-a65b-d21fe96a405b
-rwxr-xr-xastmm.c18
1 files changed, 13 insertions, 5 deletions
diff --git a/astmm.c b/astmm.c
index 49cb3bbc4..34ec84232 100755
--- a/astmm.c
+++ b/astmm.c
@@ -80,8 +80,10 @@ static inline void *__ast_alloc_region(size_t size, int which, const char *file,
pthread_mutex_unlock(&reglock);
if (!reg) {
fprintf(stderr, "Out of memory :(\n");
- if (mmlog)
- fprintf(stderr, "%ld - Out of memory\n", time(NULL));
+ if (mmlog) {
+ fprintf(mmlog, "%ld - Out of memory\n", time(NULL));
+ fflush(mmlog);
+ }
}
return ptr;
}
@@ -129,9 +131,11 @@ static void __ast_free_region(void *ptr, const char *file, int lineno, const cha
} else {
fprintf(stderr, "WARNING: Freeing unused memory at %p, in %s of %s, line %d\n",
ptr, func, file, lineno);
- if (mmlog)
+ if (mmlog) {
fprintf(mmlog, "%ld - WARNING: Freeing unused memory at %p, in %s of %s, line %d\n", time(NULL),
ptr, func, file, lineno);
+ fflush(mmlog);
+ }
}
}
@@ -163,9 +167,11 @@ void *__ast_realloc(void *ptr, size_t size, const char *file, int lineno, const
if (!len) {
fprintf(stderr, "WARNING: Realloc of unalloced memory at %p, in %s of %s, line %d\n",
ptr, func, file, lineno);
- if (mmlog)
+ if (mmlog) {
fprintf(mmlog, "%ld - WARNING: Realloc of unalloced memory at %p, in %s of %s, line %d\n",
time(NULL), ptr, func, file, lineno);
+ fflush(mmlog);
+ }
return NULL;
}
}
@@ -331,8 +337,10 @@ void __ast_mm_init(void)
mmlog = fopen("/var/log/asterisk/mmlog", "a+");
if (option_verbose)
ast_verbose("Asterisk Malloc Debugger Started (see /var/log/mmlog)\n");
- if (mmlog)
+ if (mmlog) {
fprintf(mmlog, "%ld - New session\n", time(NULL));
+ fflush(mmlog);
+ }
}
#endif