This is a simple question: Does freeRTOS handla multiple threads in multiple processes as the "real" Linux system does?
|
feedback
|
|
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 | |||
|
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. | |||
|
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! | |||
|
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. | |||
|
feedback
|