From 4a3794ea2bd99a4e653b25685fc45352d177ab9d Mon Sep 17 00:00:00 2001 From: Dale Weiler Date: Fri, 26 Jul 2013 14:57:21 +0000 Subject: [PATCH] Track strdup memory too --- stat.c | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/stat.c b/stat.c index 287ec0b..869a11f 100644 --- a/stat.c +++ b/stat.c @@ -55,6 +55,7 @@ static uint64_t stat_mem_allocated_total = 0; static uint64_t stat_mem_deallocated_total = 0; static uint64_t stat_mem_high = 0; static uint64_t stat_mem_peak = 0; +static uint64_t stat_mem_strdups = 0; static uint64_t stat_used_strdups = 0; static uint64_t stat_used_vectors = 0; static uint64_t stat_used_hashtables = 0; @@ -223,6 +224,7 @@ char *stat_mem_strdup(const char *src, size_t line, const char *file, bool empty } stat_used_strdups ++; + stat_mem_strdups += len; return ptr; } @@ -679,12 +681,14 @@ void stat_info() { uint64_t mem = 0; con_out("Memory Statistics:\n\ - Total vectors allocated: %llu\n\ - Total string duplicates: %llu\n\ - Total hashtables allocated: %llu\n\ - Total unique vector sizes: %llu\n", + Total vectors allocated: %llu\n\ + Total string duplicates: %llu\n\ + Total string duplicate memory: %f (MB)\n\ + Total hashtables allocated: %llu\n\ + Total unique vector sizes: %llu\n", stat_used_vectors, stat_used_strdups, + (float)(stat_mem_strdups) / 1048576.0f, stat_used_hashtables, stat_type_vectors ); -- 2.39.2