What is a task's priority and how is it used in scheduling? A task’s priority is an integer value. This value is used to identify the relative order of execution with respect to other tasks.
The task scheduler schedules the higher priority tasks first, followed by the lower priority tasks.
A priority is an integer value. Based on this priority the scheduler determines when to execute a task.
|