This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

cooperative tasks in RTX

When we configure RTX for cooperative tasks(the same priority tasks) and disabling round robin.

If several tasks are ready to run, how they will be executed? what is the sequence for run tasks?

Parents
  • Because a cooperatively multitasked system relies on each task regularly giving up time to other processes on the system, one poorly designed program can consume all of the CPU time for itself or cause the whole system to hang. In other words: You will decide the order by determining when a task yields the CPU to other tasks.

Reply
  • Because a cooperatively multitasked system relies on each task regularly giving up time to other processes on the system, one poorly designed program can consume all of the CPU time for itself or cause the whole system to hang. In other words: You will decide the order by determining when a task yields the CPU to other tasks.

Children