summaryrefslogtreecommitdiffstats
path: root/firmware/microblaze/lwip/lwippools.h
diff options
context:
space:
mode:
authorJosh Blum <josh@joshknows.com>2010-02-10 16:53:37 -0800
committerJosh Blum <josh@joshknows.com>2010-02-10 16:53:37 -0800
commit2b6c895b4f9916a06b14c40f545c9b4e53141c9a (patch)
treefee48a8e129bf36e67a6ba1b6d7898429e79b0bb /firmware/microblaze/lwip/lwippools.h
parenta61cc56bb6d544742487326ccba7c457bbddb0e6 (diff)
downloaduhd-2b6c895b4f9916a06b14c40f545c9b4e53141c9a.tar.gz
uhd-2b6c895b4f9916a06b14c40f545c9b4e53141c9a.tar.bz2
uhd-2b6c895b4f9916a06b14c40f545c9b4e53141c9a.zip
net_common working in this state with control udp packets
Diffstat (limited to 'firmware/microblaze/lwip/lwippools.h')
-rw-r--r--firmware/microblaze/lwip/lwippools.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/firmware/microblaze/lwip/lwippools.h b/firmware/microblaze/lwip/lwippools.h
new file mode 100644
index 000000000..caee23c82
--- /dev/null
+++ b/firmware/microblaze/lwip/lwippools.h
@@ -0,0 +1,24 @@
+#ifndef INCLUDED_LWIPPOOLS_H
+#define INCLUDED_LWIPPOOLS_H
+
+/*
+ * from comment at top of mem.c:
+ *
+ * To let mem_malloc() use pools (prevents fragmentation and is much faster than
+ * a heap but might waste some memory), define MEM_USE_POOLS to 1, define
+ * MEM_USE_CUSTOM_POOLS to 1 and create a file "lwippools.h" that includes a list
+ * of pools like this (more pools can be added between _START and _END):
+ *
+ * Define three pools with sizes 256, 512, and 1512 bytes
+ * LWIP_MALLOC_MEMPOOL_START
+ * LWIP_MALLOC_MEMPOOL(20, 256)
+ * LWIP_MALLOC_MEMPOOL(10, 512)
+ * LWIP_MALLOC_MEMPOOL(5, 1512)
+ * LWIP_MALLOC_MEMPOOL_END
+ */
+
+LWIP_MALLOC_MEMPOOL_START
+LWIP_MALLOC_MEMPOOL(2, 256)
+LWIP_MALLOC_MEMPOOL_END
+
+#endif /* INCLUDED_LWIPPOOLS_H */