Updated stats.h/.c to reflect the integration of pbuf pool into memp

This commit is contained in:
goldsimon
2007-05-16 13:49:44 +00:00
parent fd982597fe
commit 2e479b88a8
2 changed files with 2 additions and 24 deletions

View File

@@ -79,13 +79,6 @@ struct stats_mem {
mem_size_t err;
};
struct stats_pbuf {
STAT_COUNTER avail;
STAT_COUNTER used;
STAT_COUNTER max;
STAT_COUNTER err;
};
struct stats_syselem {
STAT_COUNTER used;
STAT_COUNTER max;
@@ -116,9 +109,6 @@ struct stats_ {
#if TCP_STATS
struct stats_proto tcp;
#endif
#if PBUF_STATS
struct stats_pbuf pbuf;
#endif
#if MEM_STATS
struct stats_mem mem;
#endif