Changeset 50209 in vbox
- Timestamp:
- Jan 24, 2014 3:16:34 AM (11 years ago)
- Location:
- trunk/src/VBox/Devices/Network/lwip-new
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Network/lwip-new/CHANGELOG
r50192 r50209 84 84 85 85 ++ Bugfixes: 86 87 2014-01-08: Stathis Voukelatos 88 * memp_std.h: patch #7928 Fixed size calculation in MALLOC memory pool 89 creation macro 86 90 87 91 2014-01-18: Brian Fahs -
trunk/src/VBox/Devices/Network/lwip-new/src/include/lwip/memp_std.h
r47886 r50209 13 13 /* This treats "malloc pools" just like any other pool. 14 14 The pools are a little bigger to provide 'size' as the amount of user data. */ 15 #define LWIP_MALLOC_MEMPOOL(num, size) LWIP_MEMPOOL(POOL_##size, num, (size + sizeof(struct memp_malloc_helper)), "MALLOC_"#size)15 #define LWIP_MALLOC_MEMPOOL(num, size) LWIP_MEMPOOL(POOL_##size, num, (size + LWIP_MEM_ALIGN_SIZE(sizeof(struct memp_malloc_helper))), "MALLOC_"#size) 16 16 #define LWIP_MALLOC_MEMPOOL_START 17 17 #define LWIP_MALLOC_MEMPOOL_END
Note:
See TracChangeset
for help on using the changeset viewer.