Quality RTOS & Embedded Software

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


Loading

Running out of heap / malloc/free usage within FreeRTOS

Posted by pugglewuggle on February 22, 2016

I've got a function that returns a pointer that is malloc'd within that function, and then free that memory outside that function from within the calling function like so:

It would appear that malloc is working but it is never freeing. Eventually, after enough iterations my MallocFailed hook kicks in. I am using heap_4.c

This execution is happening within the same task. Please help!

~~~~

void doSomething(){ char *str = NULL; //Local string buffer str = mallocInside(4);

if (str != NULL)
{
    // Do lots of stuff, then:
    vPortFree(str);
}

}

char* mallocInside(int x) { char* ret = (char*) pvPortMalloc(sizeof(char) * 255); if(ret != NULL){

	Initialize response buffer to 0/null
	memset(ret,0,sizeof(ret));

	// Then fill this with good stuff :-)
}
return ret;

} ~~~~


Running out of heap / malloc/free usage within FreeRTOS

Posted by rtel on February 23, 2016

We have run much more stringent tests than those shown in your code with no issues, so I'm guessing something in the "do lots of stuff, then" block is clobbering the memory somehow so it doens't get freed correct.y.

Do you have configASSERT() defined?

Also, the memset() call is using sizeof(ret), which is sizeof( char* ), which is 1. I don't think that is what you intended to do.


Running out of heap / malloc/free usage within FreeRTOS

Posted by pugglewuggle on February 26, 2016

You're correct, I found the problem. It was indeed an errant malloc :-) Also, the ret issue was due to some copied C++ std::string code, so my bad on the example... I just hadn't fixed it yet at some point. Do you have an article as to how to effectively user configASSERT() and describe what it does/how to use it in practice? I haven't really seen a good description of this so far.


Running out of heap / malloc/free usage within FreeRTOS

Posted by edwards3 on February 27, 2016

its the same as the C library assert.h assert(). Did you see http://www.freertos.org/a00110.html#configASSERT?


Running out of heap / malloc/free usage within FreeRTOS

Posted by pugglewuggle on March 2, 2016

I did, I just haven't really ever used it.


[ 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