0
8.1kviews
What is bounded and unbounded priority inversion? Also explain how it is solved using priority inheritance and priority ceiling.
1 Answer
written 3.9 years ago by |
Bounded priority inversion:
When a task (say T1) with lower priority is in execution and a higher priority task (say T3) pre-empts, then the execution of higher priority task begins. Now if a operation is to be done by lower priority task (i.e. T1) then the lower priority task starts …