lemoncake

rbtree based memory allocator
git clone git://git.2f30.org/lemoncake
Log | Files | Refs | README | LICENSE

commit 51eb7c3aba882d06d0f9030b2a77e70aa04a1e48
parent 547dd133564d893f8047312f2ea4d5e4d023514e
Author: sin <sin@2f30.org>
Date:   Fri,  2 Aug 2013 16:36:57 +0100

Rename dump_trees() to dump_stats()

Diffstat:
Mlemoncake.c | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lemoncake.c b/lemoncake.c @@ -65,7 +65,7 @@ at_cmp(struct node *a, struct node *b) } static void -dump_trees(void) +dump_stats(void) { char buf[BUFSIZ]; int fd; @@ -113,7 +113,7 @@ mmap_aligned(size_t align, size_t siz) static void lemoncake_dump(void) { - dump_trees(); + dump_stats(); } static int