Deadline-monotonic scheduling
Encyclopedia
Deadline-monotonic priority assignment is a priority assignment policy used with fixed priority pre-emptive scheduling
Fixed priority pre-emptive scheduling
Fixed-priority pre-emptive scheduling is a scheduling system commonly used in real-time systems. With fixed priority pre-emptive scheduling, the scheduler ensures that at any given time, the processor executes the highest priority task of all those tasks that are currently ready to execute.The...

.

With deadline-monotonic priority assignment, tasks are assigned priorities according to their deadlines; the task with the shortest deadline being assigned the highest priority.

This priority assignment policy is optimal for a set of periodic or sporadic tasks which comply with the following restrictive system model:
  1. All tasks have deadlines less than or equal to their minimum inter-arrival times (or periods).
  2. All tasks have worst-case execution times (WCET) that are less than or equal to their deadlines.
  3. All tasks are independent and so do not block each others' execution (for example by accessing mutually exclusive shared resources).
  4. No task voluntarily suspends itself.
  5. There is some point in time, referred to as a critical instant, where all of the tasks become ready to execute simultaneously.
  6. Scheduling overheads (switching from one task to another) are zero.
  7. All tasks have zero release jitter (the time from the task arriving to it becoming ready to execute).


If restriction 7 is lifted, then "deadline minus jitter" monotonic priority assignment is optimal.

If restriction 1. is lifted allowing deadlines greater than periods, then Audsley's optimal priority assignment algorithm may be used to find the optimal priority assignment.

Deadline monotonic priority assignment is not optimal for fixed priority non-pre-emptive scheduling.

A fixed priority assignment policy P is referred to as optimal if no task set exists which is schedulable using a different priority assignment policy which is not also schedulable using priority assignment policy P. Or in other words: Deadline-monotonic priority assignment (DMPA) policy is optimal if any process set, Q, that is schedulable by priority scheme, W, is also schedulable by DMPA
The source of this article is wikipedia, the free encyclopedia.  The text of this article is licensed under the GFDL.
 
x
OK