2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-31 14:35:26 +00:00

isc_mem_stats() should print memory statistics even when there are no

allocated blocks at the time it's called.
This commit is contained in:
Brian Wellington
2001-02-13 01:07:54 +00:00
parent 55f3daa4ea
commit 9f708f9014

View File

@@ -15,7 +15,7 @@
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
/* $Id: mem.c,v 1.84 2001/02/09 19:08:11 gson Exp $ */
/* $Id: mem.c,v 1.85 2001/02/13 01:07:54 bwelling Exp $ */
#include <config.h>
@@ -1006,22 +1006,20 @@ isc_mem_stats(isc_mem_t *ctx, FILE *out) {
REQUIRE(VALID_CONTEXT(ctx));
LOCK(&ctx->lock);
if (ctx->inuse > 0) {
for (i = 0; i <= ctx->max_size; i++) {
s = &ctx->stats[i];
for (i = 0; i <= ctx->max_size; i++) {
s = &ctx->stats[i];
if (s->totalgets == 0 && s->gets == 0)
continue;
fprintf(out, "%s%5lu: %11lu gets, %11lu rem",
(i == ctx->max_size) ? ">=" : " ",
(unsigned long) i, s->totalgets, s->gets);
if (s->totalgets == 0 && s->gets == 0)
continue;
fprintf(out, "%s%5lu: %11lu gets, %11lu rem",
(i == ctx->max_size) ? ">=" : " ",
(unsigned long) i, s->totalgets, s->gets);
#if ISC_MEM_USE_INTERNAL_MALLOC
if (s->blocks != 0 || s->freefrags != 0)
fprintf(out, " (%lu bl, %lu ff)",
s->blocks, s->freefrags);
if (s->blocks != 0 || s->freefrags != 0)
fprintf(out, " (%lu bl, %lu ff)",
s->blocks, s->freefrags);
#endif /* ISC_MEM_USE_INTERNAL_MALLOC */
fputc('\n', out);
}
fputc('\n', out);
}
/*