task #6831: removed the option PBUF_POOL_USES_MEMP and removed the old pbuf pool code, pbuf pool now always allocates from a memp pool

This commit is contained in:
goldsimon
2007-05-13 18:17:22 +00:00
parent a5e2e9ea03
commit 62d705903e
5 changed files with 7 additions and 137 deletions

View File

@@ -54,9 +54,7 @@ typedef enum {
#if ARP_QUEUEING
MEMP_ARP_QUEUE,
#endif
#if PBUF_POOL_USES_MEMP
MEMP_PBUF_POOL,
#endif
MEMP_SYS_TIMEOUT,
MEMP_MAX

View File

@@ -377,13 +377,6 @@ a lot of data that needs to be copied, this should be set high. */
/* ---------- Pbuf options ---------- */
/* PBUF_POOL_USES_MEMP: if set to 1, PBUF_POOL pbufs are allocated using an
additional memp type, which saves some code since a dedicated pbuf pool
is not used any more */
#ifndef PBUF_POOL_USES_MEMP
#define PBUF_POOL_USES_MEMP 0
#endif
/* PBUF_POOL_SIZE: the number of buffers in the pbuf pool. */
#ifndef PBUF_POOL_SIZE
#define PBUF_POOL_SIZE 16