What is a task's priority and how is it used in scheduling? Every task is assigned a priority for execution. The task with the highest priority is executed first. The low priority task is executed after that. This task priority is a simple integer value that identifies the relative order in which it should be executed with respect to other tasks. The scheduler attempts to schedule higher priority tasks before lower priority tasks.
|