From 5bc512aa3a0d3e4ca378fff3316b75c131f17637 Mon Sep 17 00:00:00 2001 From: Martin Mares Date: Mon, 29 Mar 1999 20:14:33 +0000 Subject: Clarify resource dumps and include them in the main debugging dump. --- lib/mempool.c | 10 +++++++--- lib/resource.c | 5 +++-- 2 files changed, 10 insertions(+), 5 deletions(-) (limited to 'lib') diff --git a/lib/mempool.c b/lib/mempool.c index 49e6e90..9319859 100644 --- a/lib/mempool.c +++ b/lib/mempool.c @@ -150,13 +150,17 @@ lp_dump(resource *r) { linpool *m = (linpool *) r; struct lp_chunk *c; - int cnt; + int cnt, cntl; for(cnt=0, c=m->first; c; c=c->next, cnt++) ; - debug("(chunk=%d threshold=%d count=%d total=%d)\n", + for(cntl=0, c=m->first_large; c; c=c->next, cntl++) + ; + debug("(chunk=%d threshold=%d count=%d+%d total=%d+%d)\n", m->chunk_size, m->threshold, cnt, - m->total); + cntl, + m->total, + m->total_large); } diff --git a/lib/resource.c b/lib/resource.c index f2a0c77..ceaa0ad 100644 --- a/lib/resource.c +++ b/lib/resource.c @@ -37,6 +37,7 @@ pool * rp_new(pool *p, char *name) { pool *z = ralloc(p, &pool_class); + z->name = name; init_list(&z->inside); return z; } @@ -62,7 +63,7 @@ pool_dump(resource *P) pool *p = (pool *) P; resource *r; - debug(" %s\n", p->name); + debug("%s\n", p->name); indent += 3; WALK_LIST(r, p->inside) rdump(r); @@ -93,7 +94,7 @@ rdump(void *res) debug(x, "", (int) r); if (r) { - debug("%-6s", r->class->name); + debug("%s ", r->class->name); r->class->dump(r); } else -- cgit v1.2.3