Priority inheritance

From Wikipedia, the free encyclopedia

This is an old revision of this page, as edited by 91.17.158.225 (talk) at 14:51, 24 January 2011 (Changed names of the Task from A, B, C to H, M, L so that they are named as their priority is.). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

In real-time computing, priority inheritance is a method for eliminating priority inversion problems. Using this programming method, a process scheduling algorithm will increase the priority of a process to the maximum priority of any process waiting for any resource on which the process has a resource lock.

The basic idea of the priority inheritance protocol is that when a job blocks one or more high priority jobs, it ignores its original priority assignment and executes its critical section at the highest priority level of all the jobs it blocks. After executing its critical section, the job returns to its original priority level.

Example

Consider three jobs:

Job Name Priority
H High
M Medium
L Low

Suppose H is blocked by L for some shared resource. The priority inheritance protocol requires that L executes its critical section at the (high) priority of H. As a result, M will be unable to preempt L and will be blocked. That is, the higher priority job M must wait for the critical section of the lower priority job L to be executed, because L now inherits the priority of H. When L exits its critical section, it regains its original (low) priority and awakens H (which was blocked by L). H, having high priority, immediately preempts L and runs to completion. This enables M and L to resume in succession and run to completion.

Problems

The basic priority inheritance protocol has two problems:

  1. It does not prevent a deadlock from happening in a program with circular lock dependencies.
  2. A chain of blocking may be formed; blocking duration can be substantial, though bounded.

See also

References

  • Lui Sha, Ragunathan Rajkumar, and John P. Lehoczky (1990). "Priority Inheritance Protocols: An Approach to Real-Time Synchronization" (PDF). IEEE Transactions on Computers. 39 (9): 1175–1185. doi:10.1109/12.57058. {{cite journal}}: Unknown parameter |month= ignored (help)CS1 maint: multiple names: authors list (link)

External links