diff options
author | michael <michael@82007160-df01-0410-b94d-b575c5fd34c7> | 2012-11-16 19:39:37 +0000 |
---|---|---|
committer | michael <michael@82007160-df01-0410-b94d-b575c5fd34c7> | 2012-11-16 19:39:37 +0000 |
commit | 055fbd10787a85b4fc8db3e618a7dfc390f82c13 (patch) | |
tree | 6427913ea67031d0ca3068958160dfe496a8e244 /modules | |
parent | b2a2b2dc1adca9f089c693b520978dc4dd0e70bf (diff) |
- 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
Diffstat (limited to 'modules')
-rw-r--r-- | modules/m_stats.c | 3 |
1 files changed, 0 insertions, 3 deletions
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, |