From 3c2d9c899c1fdff411e3db2ee2d102373f121f9f Mon Sep 17 00:00:00 2001 From: Jason Evans Date: Wed, 3 Mar 2010 17:55:03 -0800 Subject: [PATCH] Print version in malloc_stats_print(). --- jemalloc/src/stats.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/jemalloc/src/stats.c b/jemalloc/src/stats.c index dfc2f93e..311a5f24 100644 --- a/jemalloc/src/stats.c +++ b/jemalloc/src/stats.c @@ -415,6 +415,7 @@ stats_print(void (*write_cb)(void *, const char *), void *cbopaque, write_cb(cbopaque, "___ Begin jemalloc statistics ___\n"); if (general) { int err; + const char *cpv; bool bv; unsigned uv; ssize_t ssv; @@ -423,6 +424,10 @@ stats_print(void (*write_cb)(void *, const char *), void *cbopaque, bsz = sizeof(bool); ssz = sizeof(size_t); + CTL_GET("version", &cpv, const char *); + write_cb(cbopaque, "Version: "); + write_cb(cbopaque, cpv); + write_cb(cbopaque, "\n"); CTL_GET("config.debug", &bv, bool); write_cb(cbopaque, "Assertions "); write_cb(cbopaque, bv ? "enabled" : "disabled");