Quality RTOS & Embedded Software

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


Loading

Why each task needs a seperate stack?

Posted by WendyZ on November 7, 2010
Forgive me for this simple question, but I am new to tFreeRTOS. The FreeRTOS system seems to require that each task has its own stack, which is 85bytes minimum. So If I have multiple tasks, the memory usage is sort of large.
I am wondering, why each task needs a seperate task? My understanding of FreeRTOS schedules tasks based on priority, and higher priority task always interrupts lower priority tasks. So when a task is executing, only a higher priority task would preempt it and the higher priority task would execute until it finishes (or preempted or even higher ones). This scheme seems similar to the general interrupt scheme, so only one stack would suffice the need. Is it correct?
The possibility for requiring multiple stack seems only to be when a higher priority task is blocked/suspended and willingly yield the processor to other processes (i.e., the lower priority ones). So is it true that if the process don't block or suspend one stack would suffice?
Can anyone illustrate why multiple stacks is a must? Thank you very much!

RE: Why each task needs a seperate stack?

Posted by MEdwards on November 7, 2010
FreeRTOS is a fully preemptive system that uses the stack to store the context of each task individually. Interrupts run to completion so do not have an execution context across calls. I suggest reading the 'how FreeRTOS works' section of the website.

RE: Why each task needs a seperate stack?

Posted by Richard Damon on November 7, 2010
The higher priority task doesn't run till it is "finished" but until it blocks (waiting on a queue, semaphore or mutex, or executes a delay). At that point a lower priority task will start up. This switching back and forth is why each task needs its own stack.

In general, tasks rarely "finish", almost every task will be an infinite loop with a wait for resource somewhere in the loop.

If you want to avoid the stacks, you could look at the co-routines, there are a few restrictions on what they can do, and in exchange for that, they all share the same stack.

RE: Why each task needs a seperate stack?

Posted by WendyZ on November 8, 2010
Thanks for your awesome replies. In my current system I have a fair number of periodical tasks that needs to be executed at different frequencies. If I assign tasks according to their execution frequencies, I would need to have one task for each frequency, e.g., 1 task for 10ms functions, 1 task for 30ms functions, etc, , then it seems I might ended up with a large number of tasks and the memory consumption seems larger than I like. If they are all in one task, then they will not be preempting and loses the purpose of RTOS. Is there any solution to this? I am thinking about Rate Monotonic scheduling so that only one stack is needed (without using blocking calls, and this might make the design a little bit harder...). Any ideas?

RE: Why each task needs a seperate stack?

Posted by Richard Damon on November 8, 2010
It sounds like co-routine might be a good fit for you. If all/most of your tasks just need for one signal to start (like a timer) and then just run till they produce a result, it should fit well. To allow the sharing of the stack, co-routines can't remember anything on the stack when they block (and the block can't be is a subroutine of the task, it needs to be in the main task loop), but that shouldn't be a problem for you the way you have described things. Co-routine CAN be interrupted by a higher priority co-routine, but they don't round-robin at same priority level (except at block/yeild points).


[ 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