Quality RTOS & Embedded Software

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


Loading

Problems with pvPortMalloc/vPortFree

Posted by llapisera on October 31, 2014

Hello.

I have problems when I allocate memory for using as a temporal buffer. My application makes something like this:

MyStruct *p;

p = (MyStruct*)pvPortMalloc(sizeof(MyStruct)); if (p == NULL) { return SOME_ERROR; }

// Use the region allocated

// finally free memory vPortFree((void*)p);

If this is executed one time, there's no problem. But sometimes when memory is freed the data are corrupted (data outside the heap). It seems pvPortMalloc has reserved blocks of memory outside the heap region. Does anyone seen this behavior?

Currently I'm working with heap_4.c and FreeRTOS v7.3.0.

Thanks in advance.


Problems with pvPortMalloc/vPortFree

Posted by rtel on October 31, 2014

The most likely cause is a good old fashioned memory corruption.

When a block is allocated a structure is placed at the start of the block that notes the length of the block. The value returned by pvPortMalloc() jumps over the structure, so the application writer should never see or access it, or even know it is there.

vPortFree() uses the structure to know how to free the memory. It is likely that the information in the structure has been overwritten by something, causing the memory to be freed incorrectly.

Recent FreeRTOS versions include a configASSERT() statement to test for that occurring (as far as is possible), but as you are using an older version it might be that the assert() is not present in your code.

Regards.


[ 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