summaryrefslogtreecommitdiffstats
path: root/common/dlmalloc.c
diff options
context:
space:
mode:
Diffstat (limited to 'common/dlmalloc.c')
-rw-r--r--common/dlmalloc.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/common/dlmalloc.c b/common/dlmalloc.c
index f0062062fe..d831e90fe3 100644
--- a/common/dlmalloc.c
+++ b/common/dlmalloc.c
@@ -1942,13 +1942,13 @@ static void malloc_update_mallinfo(void)
void malloc_stats(void)
{
malloc_update_mallinfo();
- printf("max system bytes = %10u\n", (unsigned int)(max_total_mem));
- printf("system bytes = %10u\n",
+ printf("Maximum system memory: %u\n", (unsigned int)(max_total_mem));
+ printf("Current system memory: %u\n",
(unsigned int)(sbrked_mem + mmapped_mem));
- printf("in use bytes = %10u\n",
+ printf("in use: %u\n",
(unsigned int)(current_mallinfo.uordblks + mmapped_mem));
#if HAVE_MMAP
- fprintf(stderr, "max mmap regions = %10u\n",
+ printf("Maximum mmap'ed mmap regions: %u\n",
(unsigned int) max_n_mmaps);
#endif
}