History log of /seL4-camkes-master/projects/lwip/src/include/lwip/priv/memp_priv.h
Revision Date Author Comments
# 8fa55e32 09-Feb-2018 goldsimon <goldsimon@gmx.de>

add MEM_OVERFLOW_CHECK and combine code with MEMP_OVERFLOW_CHECK

This moves untouched memory check and defines from memp.c and memp_priv.h
to mem.c and mem_priv.h (which is new).


# 4f5ff37c 25-Jul-2016 sg <goldsimon@gmx.de>

fixed bogus compiler error for MEM_USE_POOLS==1 and MEMP_USE_CUSTOM_POOLS==0


# de9054cb 21-Jul-2016 sg <goldsimon@gmx.de>

memp: cleaned up MEMP_MEM_MALLOC:
- support memp stats when MEMP_MEM_MALLOC==1 (bug #48442);
- hide MEMP_MEM_MALLOC in memp.c instead of messing up the header file;
- make MEMP_OVERFLOW_CHECK work when MEMP_MEM_MALLOC==1


# b06f14c1 19-Jul-2016 sg <goldsimon@gmx.de>

worked on UPGRADING for 2.0.0


# 959042aa 08-Jul-2016 goldsimon <goldsimon@gmx.de>

memp: fixed compiling various combinations of memp stats (display etc.)


# b939e953 07-Jul-2016 Dirk Ziegelmeier <dirk@ziegelmeier.net>

Minor: move some macros from memp.h to memp_priv.h


# 212eacd9 07-Jul-2016 Dirk Ziegelmeier <dirk@ziegelmeier.net>

Fix bug #48356: private memp pools have no statistic counters
Implement struct stats_mem instance for each pool, let lwip_stats.mem[] point to these instances


# 451277e7 24-May-2016 Dirk Ziegelmeier <dirk@ziegelmeier.net>

Include all lwIP files in doxygen documentation


# 8f6cfa87 02-Feb-2016 Dirk Ziegelmeier <dirk@ziegelmeier.net>

Private mempools: Add missing include for LWIP_MEM_ALIGN_SIZE in memp_priv.h


# c838e1ed 12-Nov-2015 Dirk Ziegelmeier <dirk@ziegelmeier.net>

Implement possibility to declare private memory pools. This is useful to decouple some apps from the core (SNMP stack) or make contrib app useage simpler (httpserver_raw) .