Deadline-monotonic scheduling

Deadline-monotonic priority assignment is a priority assignment policy used with fixed priority pre-emptive scheduling.

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

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 other's 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[2]

References

  1. "Deadline Monotonic Scheduling". Retrieved 21 June 2013.
  2. Alan Burns and Andy Wellings (2001). Real-Time Systems and Programming Languages (3rd Edition). Addison Wesley. p. 485. ISBN 0-201-72988-1.


This article is issued from Wikipedia - version of the 4/22/2015. The text is available under the Creative Commons Attribution/Share Alike but additional terms may apply for the media files.