Quality RTOS & Embedded Software

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


Loading

FreeRTOS memory management understanding

Posted by sachingole on June 27, 2017

Hi All,

Configuration I am using as below :

define configMINIMALSTACKSIZE ((uint16t)512) define configTOTALHEAPSIZE ((sizet)(75 * 1024)) define configLARGESTACKSIZE ((uint16_t)3072)

Heap memory = 75KB 3 threads created, thread 1 with 512 stack, thread 2 with 512 stack and thread 3 with 3KB

Following is function call sequence and respective memory allocation debug message :-

  1. FreeHeap = 0, StackHighWaterMark = 0, xTaskGetTickCount = 0
  2. xQueue = xQueueCreate( mainQUEUE_LENGTH, sizeof( unsigned long ) );
  3. FreeHeap = 76696, StackHighWaterMark = 0, xTaskGetTickCount = 0
  4. xReturned = xTaskCreate( prvQueueReceiveTask, "Rx", configMINIMALSTACKSIZE, NULL, mainQUEUERECEIVETASK_PRIORITY, NULL );
  5. prvQueueReceiveTask created.
  6. FreeHeap = 74536, StackHighWaterMark = 501, xTaskGetTickCount = 0
  7. xReturned = xTaskCreate( prvQueueSendTask, "TX", configMINIMALSTACKSIZE, NULL, mainQUEUESENDTASK_PRIORITY, NULL );
  8. prvQueueSendTask created.

9.** FreeHeap = 72376, StackHighWaterMark = 501, xTaskGetTickCount = 0** 10. xReturned = xTaskCreate( prvRamDiskTask, "DISK", (configLARGESTACKSIZE), NULL, tskIDLE_PRIORITY, &xHandle ); 11. prvRamDiskTask created. 12. FreeHeap = 59976, StackHighWaterMark = 501, xTaskGetTickCount = 0 13. FreeHeap = 57816, StackHighWaterMark = 3033, xTaskGetTickCount = 9

Q. 2KB memory got allocated after each thread creation in case of first 2 threads, but suddenly 12KB memory got allocated after 3rd thread creation. Change is in case of 3rd thread is 3KB stack is configured.

Can any one help to understand why this much memory got allocated at each stage.

Best regards, Sachin


FreeRTOS memory management understanding

Posted by rtel on June 28, 2017

As is documented in the API documentation, in the source code, and in the book, the stack size parameter to xTaskCreate() is specified in words. The numbers you have provided would indicate that you are using a 32-bit processor. Each item on the stack is 32-bits, so when you specify a stack size of 512 words 2K bytes get allocated. When you specify a stack of 3K words, 12K bytes get allocated.


FreeRTOS memory management understanding

Posted by sachingole on June 28, 2017

Thank you for information.


[ 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