Quality RTOS & Embedded Software

 Real time embedded FreeRTOS RSS feed 
Quick Start Supported MCUs PDF Books Trace Tools Ecosystem


Loading

Get vApplicationMallocFailedHook fail

Posted by vicui on August 23, 2014

Hi:

I use LPCXPRESSO IDE to develop a simple web server on LPC1769, Freertos use HEAP3.c to use system malloc and free funtion. the web server can refresh per 3 second by itself, it works well. but if I refresh it by press F5 frequencty, FreeRTOS reports "DIE:ERROR:FREERTOS: malloc failure !". any problem on it ?


Get vApplicationMallocFailedHook fail

Posted by vicui on August 23, 2014

I also enable use C lib 's malloc and free //#define MEMLIBCMALLOC 1 //#define MEMPMEMMALLOC 1

I think lwip can't free memory on time in more request coming ... it cause malloc fail . but how to fix ? add protect in application ?


Get vApplicationMallocFailedHook fail

Posted by vicui on August 23, 2014

by add unsigned int _checkheapoverflow (void * newendofheap) { unsigned long stackend = ((unsigned long) &vStackTop) - STACKSIZE; return ((unsigned long)newendof_heap >= stackend); } I found that the heap is really overflow once more request incoming. in real application, Freertos use malloc, LWIP also use malloc. so, how to fix the problem ? adding delay time is not a good solution


Get vApplicationMallocFailedHook fail

Posted by edwards3 on August 23, 2014

Just sounds like you are leaking memory somewhere, probably in lwIP port.


Get vApplicationMallocFailedHook fail

Posted by vicui on August 23, 2014

NXP release more version on the LPC1769 demo web server, I try KEIL and LPCXPRESSO, both has the same issue. I don't think LWIP porting has problem. otherwise, the demo server can't refresh itself per 3 seconds for long time.


Get vApplicationMallocFailedHook fail

Posted by rtel on August 23, 2014

So these are demos you are obtaining from NXP rather than from us?

Regards.


Get vApplicationMallocFailedHook fail

Posted by vicui on August 23, 2014

NXP demo is with freertros and lwip. your demo is only for freertos. the issue is only for freertos and lwip. I think the issue is from lwip application, not freertos. I wonder to know how to keep heap safe if freertos and lwip both use C LIB malloc and free.


Get vApplicationMallocFailedHook fail

Posted by edwards3 on August 23, 2014

Is the ethernet driver calling free() from an interrupt? Lots of people do that in lwIP without setting the special lwIP constant that tries to make it safe. If it is freeing from an interrupt that is probably the cause.


Get vApplicationMallocFailedHook fail

Posted by richard_damon on August 24, 2014

I am not familiar with this implementation as I haven't used it, but malloc/free is naturally not thread safe. It is possible to make them thread safe by just disabling interrupts inside them, but this gives lousy interrupt response latency (but will let you use them in interrupts). Some implementations allow you to define a way for malloc to use some form of mutex to make it thread safe. If not, you need to do what FreeRTOS does and use a wrapper, and then everyone needs to use that wrapper.


[ Back to the top ]    [ About FreeRTOS ]    [ Privacy ]    [ Sitemap ]    [ ]


Copyright (C) Amazon Web Services, Inc. or its affiliates. All rights reserved.

Latest News

NXP tweet showing LPC5500 (ARMv8-M Cortex-M33) running FreeRTOS.

Meet Richard Barry and learn about running FreeRTOS on RISC-V at FOSDEM 2019

Version 10.1.1 of the FreeRTOS kernel is available for immediate download. MIT licensed.

View a recording of the "OTA Update Security and Reliability" webinar, presented by TI and AWS.


Careers

FreeRTOS and other embedded software careers at AWS.



FreeRTOS Partners

ARM Connected RTOS partner for all ARM microcontroller cores

Espressif ESP32

IAR Partner

Microchip Premier RTOS Partner

RTOS partner of NXP for all NXP ARM microcontrollers

Renesas

STMicro RTOS partner supporting ARM7, ARM Cortex-M3, ARM Cortex-M4 and ARM Cortex-M0

Texas Instruments MCU Developer Network RTOS partner for ARM and MSP430 microcontrollers

OpenRTOS and SafeRTOS

Xilinx Microblaze and Zynq partner