From 055fbd10787a85b4fc8db3e618a7dfc390f82c13 Mon Sep 17 00:00:00 2001 From: michael Date: Fri, 16 Nov 2012 19:39:37 +0000 Subject: - Implemented memory pool allocator which basically is taken from Tor's mempool allocator for Tor cells - Fixed compile warnings in conf_class.c - ./configure --enable-assert works again git-svn-id: svn://svn.ircd-hybrid.org/svnroot/ircd-hybrid/trunk@1654 82007160-df01-0410-b94d-b575c5fd34c7 --- modules/m_stats.c | 3 --- 1 file changed, 3 deletions(-) (limited to 'modules') diff --git a/modules/m_stats.c b/modules/m_stats.c index e90d762..0a6f78f 100644 --- a/modules/m_stats.c +++ b/modules/m_stats.c @@ -24,7 +24,6 @@ #include "stdinc.h" #include "list.h" /* dlink_node/dlink_list */ -#include "balloc.h" #include "client.h" /* Client */ #include "irc_string.h" #include "ircd.h" /* me */ @@ -365,8 +364,6 @@ stats_memory(struct Client *source_p, int parc, char *parv[]) me.name, RPL_STATSDEBUG, source_p->name, remote_client_count, remote_client_memory_used); - block_heap_report_stats(source_p); - sendto_one(source_p, ":%s %d %s z :TOTAL: %llu", me.name, RPL_STATSDEBUG, source_p->name, -- cgit