What type of scheduling is there in RTOS?
A scheduler is the heart of every RTOS. It provides the
algorithms to select the task for execution. Three common
scheduling algorithms are
> Cooperative scheduling
> Round-robin scheduling
> Preemptive scheduling
RTOS uses preemptive (priority based) scheduling.
In some cases, real-time requirements can be met by using static
scheduling.