[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[lwip-devel] Update to memp.c
From: |
Pomeroy, Marty |
Subject: |
[lwip-devel] Update to memp.c |
Date: |
Thu, 3 May 2012 14:58:16 -0400 |
When
MEMP_OVERFLOW_CHECK > zero and MEMP_SEPARATE_POOLS == one, memp.c
does not compile. The fixed code is copied below (lines are bolded, if
that comes through), replicating the pattern from memp_init(). It's just
wrapping the initializations of "p" appropriately.
Not sure what the
procedure is for getting this reviewed and included...
Marty
static
void
memp_overflow_check_all(void)
{
u16_t i, j;
struct memp *p;
#if
!MEMP_SEPARATE_POOLS
p = (struct memp
*)LWIP_MEM_ALIGN(memp_memory);
#endif /* !MEMP_SEPARATE_POOLS
*/
for (i = 0; i < MEMP_MAX; ++i) {
#if
MEMP_SEPARATE_POOLS
p = (struct memp
*)(memp_bases[i]);
#endif /* MEMP_SEPARATE_POOLS
*/
for (j = 0; j < memp_num[i]; ++j)
{
memp_overflow_check_element_overflow(p,
i);
p = (struct memp*)((u8_t*)p + MEMP_SIZE +
memp_sizes[i] + MEMP_SANITY_REGION_AFTER_ALIGNED);
}
}
#if !MEMP_SEPARATE_POOLS
p = (struct
memp *)LWIP_MEM_ALIGN(memp_memory);
#endif /* !MEMP_SEPARATE_POOLS
*/
for (i = 0; i < MEMP_MAX; ++i) {
#if
MEMP_SEPARATE_POOLS
p = (struct memp
*)(memp_bases[i]);
#endif /* MEMP_SEPARATE_POOLS
*/
for (j = 0; j < memp_num[i]; ++j)
{
memp_overflow_check_element_underflow(p,
i);
p = (struct memp*)((u8_t*)p + MEMP_SIZE +
memp_sizes[i] + MEMP_SANITY_REGION_AFTER_ALIGNED);
}
}
}
/**
*
Initialize the restricted areas of all memp elements in every
pool.
*/
static void
memp_overflow_init(void)
{
u16_t i, j;
struct memp *p;
u8_t *m;
#if
!MEMP_SEPARATE_POOLS
p = (struct memp
*)LWIP_MEM_ALIGN(memp_memory);
#endif /* !MEMP_SEPARATE_POOLS
*/
for (i = 0; i < MEMP_MAX; ++i) {
#if
MEMP_SEPARATE_POOLS
p = (struct memp
*)(memp_bases[i]);
#endif /* MEMP_SEPARATE_POOLS
*/
for (j = 0; j < memp_num[i]; ++j) {
#if
MEMP_SANITY_REGION_BEFORE_ALIGNED > 0
m =
(u8_t*)p + MEMP_SIZE -
MEMP_SANITY_REGION_BEFORE_ALIGNED;
memset(m,
0xcd, MEMP_SANITY_REGION_BEFORE_ALIGNED);
#endif
#if
MEMP_SANITY_REGION_AFTER_ALIGNED > 0
m =
(u8_t*)p + MEMP_SIZE + memp_sizes[i];
memset(m, 0xcd,
MEMP_SANITY_REGION_AFTER_ALIGNED);
#endif
p
= (struct memp*)((u8_t*)p + MEMP_SIZE + memp_sizes[i] +
MEMP_SANITY_REGION_AFTER_ALIGNED);
}
}
}
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [lwip-devel] Update to memp.c,
Pomeroy, Marty <=