[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [lwip-users] lwip and OS - memory management
From: |
Jeff Barber |
Subject: |
Re: [lwip-users] lwip and OS - memory management |
Date: |
Mon, 1 Mar 2010 08:15:08 -0500 |
On Mon, Mar 1, 2010 at 4:45 AM, Kieran Mansley <address@hidden> wrote:
> On Sun, 2010-02-28 at 13:16 +0100, Martin Velek wrote:
>> I am running a lwip 1.3.2 with FreeRTOS. I am using own
>> malloc/free/calloc/realloc memory management. What should I setup in
>> the lwipopts.h if I would like use only malloc/free... functions for
>> pbuf's, internal sturctures (arp tables?) and OS support?
I'm also using my own memory management. I would add one note to what
Kieran said:
Your mem_realloc must not move the memory. This is different than the
standard realloc definition and something that is not obvious. (The
name has recently been changed to mem_trim to avoid confusion but that
change is not in 1.3.2.)
Jeff