This is a simple question: Does freeRTOS handla multiple threads in multiple processes as the "real" Linux system does?

link|improve this question

feedback

4 Answers

up vote 5 down vote accepted

FreeRTOS is not Linux, nor does it pretend to be, although it is a cross platform standard kernel in its own right as it supports 26 cores - but it is designed for microcontrollers not microprocessors. Most of those cores don't use an MMU though so there is no concept of a process. If you like, all the tasks are 'threads' running in a single 'process'. That is why I use the terminology 'task' so as not to cause confusion. There are FreeRTOS versions that support the use of an MPU though, this allows memory partitioning and access rights like an MMU, but in a linear rather than virtual address space.

Regards, Richard. http://www.FreeRTOS.org

link|improve this answer
feedback

FreeRTOS uses a simple priority scheduler, documented here.

I'm not sure what you mean by handling threads like Linux does, but if every thread has the same priority, they should be allocated CPU time fairly.

link|improve this answer
hi, thanks. what if there is more than one CPU? – Dervin Thunk Feb 6 '11 at 16:35
feedback

Yes, rmmh is right that Tasks with similar priority will be allocated CPU time as well. This can be seen from the following website:

http://www.freertos.org/implementation/a00007.html

As an added point, FreeRTOS, as it's name suggests is a Real-Time Operating System. That being said, FreeRTOS can be configured to perform like a Time-Sharing System like that of Linux and vice-versa.

Hope that helped. Cheers!

link|improve this answer
feedback

No. (Free)RTOS generally don't have the same ideas of processes and threads as is used with a common GPOS like Linux. The term "task" is often used instead to avoid confusion.

That said, you might have a look at FreeRTOS coroutines, which are sort of execution-threads-inna-task in FreeRTOS.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.