77
Chapter 10 Multiprocessor and Real-Time Scheduling Operating Systems: Internals and Design Principles, 6/E William Stallings Dave Bremer Otago Polytechnic, N.Z. ©2008, Prentice Hall

Chapter 10 Multiprocessor and Real-Time Scheduling Operating Systems: Internals and Design Principles, 6/E William Stallings Dave Bremer Otago Polytechnic,

  • View
    230

  • Download
    1

Embed Size (px)

Citation preview

Page 1: Chapter 10 Multiprocessor and Real-Time Scheduling Operating Systems: Internals and Design Principles, 6/E William Stallings Dave Bremer Otago Polytechnic,

Chapter 10Multiprocessor and Real-Time

Scheduling

Operating Systems:Internals and Design Principles, 6/E

William Stallings

Dave BremerOtago Polytechnic, N.Z.

©2008, Prentice Hall

Page 2: Chapter 10 Multiprocessor and Real-Time Scheduling Operating Systems: Internals and Design Principles, 6/E William Stallings Dave Bremer Otago Polytechnic,

Two topics for IT

• Multiprocessor performance gains• Real-time systems

Page 3: Chapter 10 Multiprocessor and Real-Time Scheduling Operating Systems: Internals and Design Principles, 6/E William Stallings Dave Bremer Otago Polytechnic,

Roadmap

• Multiprocessor Scheduling• Real-Time Scheduling• Linux Scheduling • Unix SVR4 Scheduling • Windows Scheduling

Page 4: Chapter 10 Multiprocessor and Real-Time Scheduling Operating Systems: Internals and Design Principles, 6/E William Stallings Dave Bremer Otago Polytechnic,

Classifications of Multiprocessor Systems

• Loosely coupled processors, – Each has their memory & I/O channels

• Functionally specialized processors– Controlled by a master processor– Such as I/O processor

• Tightly coupled multiprocessing– Processors share main memory – Controlled by operating system

Page 5: Chapter 10 Multiprocessor and Real-Time Scheduling Operating Systems: Internals and Design Principles, 6/E William Stallings Dave Bremer Otago Polytechnic,

Granularity

• Or frequency of synchronization, between processes in a system.

• Five categories, differing in granularity:– Independent Parallelism– Coarse Parallelism – Very Coarse-Grained Parallelism– Medium-Grained Parallelism– Fine-Grained Parallelism

Page 6: Chapter 10 Multiprocessor and Real-Time Scheduling Operating Systems: Internals and Design Principles, 6/E William Stallings Dave Bremer Otago Polytechnic,

Independent Parallelism

• No explicit synchronization among processes

• Separate application or job• Example is time-sharing system

Page 7: Chapter 10 Multiprocessor and Real-Time Scheduling Operating Systems: Internals and Design Principles, 6/E William Stallings Dave Bremer Otago Polytechnic,

Coarse and Very Coarse-Grained Parallelism

• Synchronization among processes at a very gross level

• Good for concurrent processes running on a multiprogrammed uniprocessor– Can by supported on a multiprocessor with

little change

Page 8: Chapter 10 Multiprocessor and Real-Time Scheduling Operating Systems: Internals and Design Principles, 6/E William Stallings Dave Bremer Otago Polytechnic,

Medium-Grained Parallelism

• Single application is a collection of threads• Threads usually interact frequently,

affecting the performance of the entire application

Page 9: Chapter 10 Multiprocessor and Real-Time Scheduling Operating Systems: Internals and Design Principles, 6/E William Stallings Dave Bremer Otago Polytechnic,

Fine-Grained Parallelism

• Highly parallel applications• Specialized and fragmented area

Page 10: Chapter 10 Multiprocessor and Real-Time Scheduling Operating Systems: Internals and Design Principles, 6/E William Stallings Dave Bremer Otago Polytechnic,

Synchronization Granularity and Processes

Page 11: Chapter 10 Multiprocessor and Real-Time Scheduling Operating Systems: Internals and Design Principles, 6/E William Stallings Dave Bremer Otago Polytechnic,

Valve Example

• Valve (half-life2 etc) found a hybrid approach works best for their games

• Some systems worked best assigned to a single processor. E.G sound mixing

• Others can be threaded so they work on single processors but greatly improve performance spread over multiple processors. E.g. scene rendering

Page 12: Chapter 10 Multiprocessor and Real-Time Scheduling Operating Systems: Internals and Design Principles, 6/E William Stallings Dave Bremer Otago Polytechnic,

Thread Structure for Rendering Module

Page 13: Chapter 10 Multiprocessor and Real-Time Scheduling Operating Systems: Internals and Design Principles, 6/E William Stallings Dave Bremer Otago Polytechnic,

Scheduling Design Issues

• Scheduling on a multiprocessor involves three interrelated issues:– Assignment of processes to processors– Use of multiprogramming on individual

processors– Actual dispatching of a process

• The approach taken will depend on the degree of granularity of applications and the number of processors available

Page 14: Chapter 10 Multiprocessor and Real-Time Scheduling Operating Systems: Internals and Design Principles, 6/E William Stallings Dave Bremer Otago Polytechnic,

Assignment of Processes to Processors

• Assuming all processors are equal, it is simplest to treat processors as a pooled resource and assign process to processors on demand.– Should assignment be static or dynamic?

• Dynamic Assignment– Threads moved between processor queues

• Linux uses this arrangement

Page 15: Chapter 10 Multiprocessor and Real-Time Scheduling Operating Systems: Internals and Design Principles, 6/E William Stallings Dave Bremer Otago Polytechnic,

Static Assignment

• Permanently assign process to a processor– Dedicate short-term queue for each processor– Less overhead– Allows the use of ‘group’ or ‘gang’ scheduling

(see later)

• But may leave a processor idle, while others have a backlog– Solution: use a common queue

Page 16: Chapter 10 Multiprocessor and Real-Time Scheduling Operating Systems: Internals and Design Principles, 6/E William Stallings Dave Bremer Otago Polytechnic,

Assignment ofProcesses to Processors

• Both dynamic and static methods require some way of assigning a process to a processor

• Two methods:– Master/Slave– Peer

• There are of course a spectrum of approaches between these two extremes.

Page 17: Chapter 10 Multiprocessor and Real-Time Scheduling Operating Systems: Internals and Design Principles, 6/E William Stallings Dave Bremer Otago Polytechnic,

Master / SlaveArchitecture

• Key kernel functions always run on a particular processor

• Master is responsible for scheduling• Slave sends service request to the master• Disadvantages

– Failure of master brings down whole system– Master can become a performance bottleneck

Page 18: Chapter 10 Multiprocessor and Real-Time Scheduling Operating Systems: Internals and Design Principles, 6/E William Stallings Dave Bremer Otago Polytechnic,

Peer architecture

• Kernel can execute on any processor• Each processor does self-scheduling• Complicates the operating system

– Make sure two processors do not choose the same process

Page 19: Chapter 10 Multiprocessor and Real-Time Scheduling Operating Systems: Internals and Design Principles, 6/E William Stallings Dave Bremer Otago Polytechnic,

Process Scheduling

• Usually processes are not dedicated to processors

• A single queue is used for all processes• Or multiple queues are used for priorities

– All queues feed to the common pool of processors

Page 20: Chapter 10 Multiprocessor and Real-Time Scheduling Operating Systems: Internals and Design Principles, 6/E William Stallings Dave Bremer Otago Polytechnic,

Thread Scheduling

• Threads execute separate from the rest of the process

• Application can be a set of threads that cooperate and execute concurrently in the same address space

• Dramatic gains in performance are possible in multi-processor systems– Compared to uniprocessor systems

Page 21: Chapter 10 Multiprocessor and Real-Time Scheduling Operating Systems: Internals and Design Principles, 6/E William Stallings Dave Bremer Otago Polytechnic,

Approaches toThread Scheduling

• Four general approaches (of many):– Load Sharing

• Bank queue

– Gang Scheduling• Gang takes over a set of processors

– Dedicated processor assignment• Program says “all mine”

– Dynamic scheduling– Constant change

Page 22: Chapter 10 Multiprocessor and Real-Time Scheduling Operating Systems: Internals and Design Principles, 6/E William Stallings Dave Bremer Otago Polytechnic,

Load Sharing

• Processes are not assigned to a particular processor

• Load is distributed evenly across the processors

• No centralized scheduler required• Global queue can be accessed using

schemes discussed in Chapter 9.

Page 23: Chapter 10 Multiprocessor and Real-Time Scheduling Operating Systems: Internals and Design Principles, 6/E William Stallings Dave Bremer Otago Polytechnic,

Comparison One and Two Processors

Figure 10.2

Page 24: Chapter 10 Multiprocessor and Real-Time Scheduling Operating Systems: Internals and Design Principles, 6/E William Stallings Dave Bremer Otago Polytechnic,

Disadvantages of Load Sharing

• Central queue needs mutual exclusion– Can lead to bottlenecks

• Preemptive threads are unlikely resume execution on the same processor

• If all threads are in the global queue, all threads of a program will not gain access to the processors at the same time

Page 25: Chapter 10 Multiprocessor and Real-Time Scheduling Operating Systems: Internals and Design Principles, 6/E William Stallings Dave Bremer Otago Polytechnic,

Gang Scheduling

• A set of related threads is scheduled to run on a set of processors at the same time

• Parallel execution of closely related processes may reduce overhead such as process switching and synchronization blocking.

Page 26: Chapter 10 Multiprocessor and Real-Time Scheduling Operating Systems: Internals and Design Principles, 6/E William Stallings Dave Bremer Otago Polytechnic,

Example Scheduling Groups

Page 27: Chapter 10 Multiprocessor and Real-Time Scheduling Operating Systems: Internals and Design Principles, 6/E William Stallings Dave Bremer Otago Polytechnic,

Dedicated Processor Assignment

• When application is scheduled, its threads are assigned to a processor

• Some processors may be idle– No multiprogramming of processors

• But– In highly parallel systems processor utilization

is less important than effectiveness– Avoiding process switching speeds up

programs

Page 28: Chapter 10 Multiprocessor and Real-Time Scheduling Operating Systems: Internals and Design Principles, 6/E William Stallings Dave Bremer Otago Polytechnic,

Application Speedup

Page 29: Chapter 10 Multiprocessor and Real-Time Scheduling Operating Systems: Internals and Design Principles, 6/E William Stallings Dave Bremer Otago Polytechnic,

Dynamic Scheduling

• Number of threads in a process are altered dynamically by the application– This allows the OS to adjust the load to

improve utilization

Page 30: Chapter 10 Multiprocessor and Real-Time Scheduling Operating Systems: Internals and Design Principles, 6/E William Stallings Dave Bremer Otago Polytechnic,

Roadmap

• Multiprocessor Scheduling• Real-Time Scheduling• Linux Scheduling • Unix SVR4 Scheduling • Windows Scheduling

Page 31: Chapter 10 Multiprocessor and Real-Time Scheduling Operating Systems: Internals and Design Principles, 6/E William Stallings Dave Bremer Otago Polytechnic,

Real-time?

• What is real-time?– Examples

• Why is it important?– Future IT applications

• Approximation of RT in modern OS– No true RT

Page 32: Chapter 10 Multiprocessor and Real-Time Scheduling Operating Systems: Internals and Design Principles, 6/E William Stallings Dave Bremer Otago Polytechnic,

Real-Time Scheduling

• Correctness of the system depends not only on the logical result of the computation but also on the time at which the results are produced

• Tasks or processes attempt to control or react to events that take place in the outside world

• These events occur in “real time” and tasks must be able to keep up with them

Page 33: Chapter 10 Multiprocessor and Real-Time Scheduling Operating Systems: Internals and Design Principles, 6/E William Stallings Dave Bremer Otago Polytechnic,

Hard vs Soft

• “Hard “ real time task:– One that must meet a deadline

• “Soft” real time task– Has a deadline which is desirable but not

mandatory

Page 34: Chapter 10 Multiprocessor and Real-Time Scheduling Operating Systems: Internals and Design Principles, 6/E William Stallings Dave Bremer Otago Polytechnic,

Periodic vs Aperiodic

• Periodic tasks– Are completed regularly, once per period T or

T units apart

• Aperiodic tasks– have time constraints either for deadlines or

start

Page 35: Chapter 10 Multiprocessor and Real-Time Scheduling Operating Systems: Internals and Design Principles, 6/E William Stallings Dave Bremer Otago Polytechnic,

Real-Time Systems

• Control of laboratory experiments• Process control in industrial plants• Robotics• Air traffic control• Telecommunications• Military command and control systems

Page 36: Chapter 10 Multiprocessor and Real-Time Scheduling Operating Systems: Internals and Design Principles, 6/E William Stallings Dave Bremer Otago Polytechnic,

Characteristics of Real Time Systems

• Real time systems have requirements in five general areas:– Determinism– Responsiveness– User control– Reliability– Fail-soft operation

Page 37: Chapter 10 Multiprocessor and Real-Time Scheduling Operating Systems: Internals and Design Principles, 6/E William Stallings Dave Bremer Otago Polytechnic,

Determinism

• Operations are performed at fixed, predetermined times or within predetermined time intervals

• Concerned with how long the operating system delays before acknowledging an interrupt and there is sufficient capacity to handle all the requests within the required time

Page 38: Chapter 10 Multiprocessor and Real-Time Scheduling Operating Systems: Internals and Design Principles, 6/E William Stallings Dave Bremer Otago Polytechnic,

Responsiveness

• How long, after acknowledgment, it takes the operating system to service the interrupt

• Responsiveness includes:– Amount of time to begin execution of the

interrupt– Amount of time to perform the interrupt– Effect of interrupt nesting

Page 39: Chapter 10 Multiprocessor and Real-Time Scheduling Operating Systems: Internals and Design Principles, 6/E William Stallings Dave Bremer Otago Polytechnic,

User control

• It is essential to allow the user fine-grained control over task priority– Stick your fingers in a running engine!

• May allow user to specify things such as paging or process swapping

• Disks transfer algorithms to use• Rights of processes

Page 40: Chapter 10 Multiprocessor and Real-Time Scheduling Operating Systems: Internals and Design Principles, 6/E William Stallings Dave Bremer Otago Polytechnic,

Characteristics

• Reliability– Degradation of performance may have

catastrophic consequences

• Fail-soft operation– Ability of a system to fail in such a way as to

preserve as much capability and data as possible

– Stability is important – if all deadlines are impossible, critical deadlines still meet.

Page 41: Chapter 10 Multiprocessor and Real-Time Scheduling Operating Systems: Internals and Design Principles, 6/E William Stallings Dave Bremer Otago Polytechnic,

Features of Real-Time OS

• Fast process or thread switch• Small size• Ability to respond to external interrupts

quickly• Multitasking with interprocess

communication tools such as semaphores, signals, and events

Page 42: Chapter 10 Multiprocessor and Real-Time Scheduling Operating Systems: Internals and Design Principles, 6/E William Stallings Dave Bremer Otago Polytechnic,

Features of Real-Time OS cont…

• Use of special sequential files that can accumulate data at a fast rate

• Preemptive scheduling base on priority• Minimization of intervals during which

interrupts are disabled• Delay tasks for fixed amount of time• Special alarms and timeouts

Page 43: Chapter 10 Multiprocessor and Real-Time Scheduling Operating Systems: Internals and Design Principles, 6/E William Stallings Dave Bremer Otago Polytechnic,

Round Robin scheduling unacceptable

Page 44: Chapter 10 Multiprocessor and Real-Time Scheduling Operating Systems: Internals and Design Principles, 6/E William Stallings Dave Bremer Otago Polytechnic,

Priority driven unacceptable

Page 45: Chapter 10 Multiprocessor and Real-Time Scheduling Operating Systems: Internals and Design Principles, 6/E William Stallings Dave Bremer Otago Polytechnic,

Combine priorities with clock-based interrupts

Page 46: Chapter 10 Multiprocessor and Real-Time Scheduling Operating Systems: Internals and Design Principles, 6/E William Stallings Dave Bremer Otago Polytechnic,

Immediate Preemption

Page 47: Chapter 10 Multiprocessor and Real-Time Scheduling Operating Systems: Internals and Design Principles, 6/E William Stallings Dave Bremer Otago Polytechnic,

Classes of Real-Time Scheduling Algorithms

• Static table-driven– Task execution determined at run time

• Static priority-driven preemptive– Traditional priority-driven scheduler is used

• Dynamic planning-based– Feasibility determined at run time

• Dynamic best effort– No feasibility analysis is performed

Page 48: Chapter 10 Multiprocessor and Real-Time Scheduling Operating Systems: Internals and Design Principles, 6/E William Stallings Dave Bremer Otago Polytechnic,

Deadline Scheduling

• Real-time applications are not concerned with speed but with completing tasks

• “Priorities” are a crude tool and may not capture the time-critical element of the tasks

Page 49: Chapter 10 Multiprocessor and Real-Time Scheduling Operating Systems: Internals and Design Principles, 6/E William Stallings Dave Bremer Otago Polytechnic,

Deadline Scheduling

• Information used– Ready time– Starting deadline– Completion deadline– Processing time– Resource requirements– Priority– Subtask scheduler

Page 50: Chapter 10 Multiprocessor and Real-Time Scheduling Operating Systems: Internals and Design Principles, 6/E William Stallings Dave Bremer Otago Polytechnic,

Preemption

• When starting deadlines are specified, then a nonpreemptive scheduler makes sense.

• E.G. if task X is running and task Y is ready, there may be circumstances in which the only way to allow both X and Y to meet their completion deadlines is to preempt X, execute Y to completion, and then resume X to completion.

Page 52: Chapter 10 Multiprocessor and Real-Time Scheduling Operating Systems: Internals and Design Principles, 6/E William Stallings Dave Bremer Otago Polytechnic,

Periodic Scheduling

Page 53: Chapter 10 Multiprocessor and Real-Time Scheduling Operating Systems: Internals and Design Principles, 6/E William Stallings Dave Bremer Otago Polytechnic,

Execution Profile

Page 55: Chapter 10 Multiprocessor and Real-Time Scheduling Operating Systems: Internals and Design Principles, 6/E William Stallings Dave Bremer Otago Polytechnic,

Rate Monotonic Scheduling

• Assigns priorities to tasks on the basis of their periods

• Highest-priority task is the one with the shortest period

Page 56: Chapter 10 Multiprocessor and Real-Time Scheduling Operating Systems: Internals and Design Principles, 6/E William Stallings Dave Bremer Otago Polytechnic,

Task Set

Page 57: Chapter 10 Multiprocessor and Real-Time Scheduling Operating Systems: Internals and Design Principles, 6/E William Stallings Dave Bremer Otago Polytechnic,

Periodic Task Timing Diagram

Page 58: Chapter 10 Multiprocessor and Real-Time Scheduling Operating Systems: Internals and Design Principles, 6/E William Stallings Dave Bremer Otago Polytechnic,

Priority Inversion

• Can occur in any priority-based preemptive scheduling scheme

• Occurs when circumstances within the system force a higher priority task to wait for a lower priority task

Page 59: Chapter 10 Multiprocessor and Real-Time Scheduling Operating Systems: Internals and Design Principles, 6/E William Stallings Dave Bremer Otago Polytechnic,

Unbounded Priority Inversion

• Duration of a priority inversion depends on unpredictable actions of other unrelated tasks

Page 60: Chapter 10 Multiprocessor and Real-Time Scheduling Operating Systems: Internals and Design Principles, 6/E William Stallings Dave Bremer Otago Polytechnic,

Priority Inheritance

• Lower-priority task inherits the priority of any higher priority task pending on a resource they share

Page 61: Chapter 10 Multiprocessor and Real-Time Scheduling Operating Systems: Internals and Design Principles, 6/E William Stallings Dave Bremer Otago Polytechnic,

Linux Scheduling

• Scheduling classes– SCHED_FIFO: First-in-first-out real-time

threads– SCHED_RR: Round-robin real-time threads– SCHED_OTHER: Other, non-real-time

threads

• Within each class multiple priorities may be used

Page 62: Chapter 10 Multiprocessor and Real-Time Scheduling Operating Systems: Internals and Design Principles, 6/E William Stallings Dave Bremer Otago Polytechnic,

Roadmap

• Multiprocessor Scheduling• Real-Time Scheduling• Linux Scheduling • Unix SVR4 Scheduling • Windows Scheduling

Page 63: Chapter 10 Multiprocessor and Real-Time Scheduling Operating Systems: Internals and Design Principles, 6/E William Stallings Dave Bremer Otago Polytechnic,

Linux Real Time Scheduling Classes

• SCHED_FIFO: – First-in-first-out real-time threads

• SCHED_RR: – Round-robin real-time threads

• SCHED_OTHER: – Other, non-real-time threads

Page 64: Chapter 10 Multiprocessor and Real-Time Scheduling Operating Systems: Internals and Design Principles, 6/E William Stallings Dave Bremer Otago Polytechnic,

Linux Real-Time Scheduling

Page 65: Chapter 10 Multiprocessor and Real-Time Scheduling Operating Systems: Internals and Design Principles, 6/E William Stallings Dave Bremer Otago Polytechnic,

Non-Real-Time Scheduling

• Linux 2.6 uses a new scheduler the O(1) scheduler

• Time to select the appropriate process and assign it to a processor is constant– Regardless of the load on the system or

number of processors

Page 66: Chapter 10 Multiprocessor and Real-Time Scheduling Operating Systems: Internals and Design Principles, 6/E William Stallings Dave Bremer Otago Polytechnic,

Linux Scheduling Data Structures

Page 67: Chapter 10 Multiprocessor and Real-Time Scheduling Operating Systems: Internals and Design Principles, 6/E William Stallings Dave Bremer Otago Polytechnic,

Roadmap

• Multiprocessor Scheduling• Real-Time Scheduling• Linux Scheduling • Unix SVR4 Scheduling • Windows Scheduling

Page 68: Chapter 10 Multiprocessor and Real-Time Scheduling Operating Systems: Internals and Design Principles, 6/E William Stallings Dave Bremer Otago Polytechnic,

SVR4 Scheduling

• A complete overhaul of the scheduling algorithm used in earlier UNIX systems.

• The new algorithm is designed to give:– highest preference to real-time processes, – next-highest preference to kernel-mode

processes, – and lowest preference to other user-mode

processes, referred to as time-shared processes.

Page 69: Chapter 10 Multiprocessor and Real-Time Scheduling Operating Systems: Internals and Design Principles, 6/E William Stallings Dave Bremer Otago Polytechnic,

UNIX SVR4 Scheduling

• New features include:– Preemptable static priority scheduler– Introduction of a set of 160 priority levels

divided into three priority classes– Insertion of preemption points

Page 70: Chapter 10 Multiprocessor and Real-Time Scheduling Operating Systems: Internals and Design Principles, 6/E William Stallings Dave Bremer Otago Polytechnic,

SVR Priority Classes

Page 71: Chapter 10 Multiprocessor and Real-Time Scheduling Operating Systems: Internals and Design Principles, 6/E William Stallings Dave Bremer Otago Polytechnic,

SVR Priority Classes

• Real time (159 – 100)– Guaranteed to be selected to run before any

kernel or time-sharing process– Can preempt kernel and user processes

• Kernel (99 – 60)– Guaranteed to be selected to run before any

time-sharing process

• Time-shared (59-0)– Lowest-priority

Page 72: Chapter 10 Multiprocessor and Real-Time Scheduling Operating Systems: Internals and Design Principles, 6/E William Stallings Dave Bremer Otago Polytechnic,

SVR4 Dispatch Queues

Page 73: Chapter 10 Multiprocessor and Real-Time Scheduling Operating Systems: Internals and Design Principles, 6/E William Stallings Dave Bremer Otago Polytechnic,

Roadmap

• Multiprocessor Scheduling• Real-Time Scheduling• Linux Scheduling • Unix SVR4 Scheduling • Windows Scheduling

Page 74: Chapter 10 Multiprocessor and Real-Time Scheduling Operating Systems: Internals and Design Principles, 6/E William Stallings Dave Bremer Otago Polytechnic,

Windows Scheduling

• Priorities organized into two bands or classes– Real time– Variable

• Priority-driven preemptive scheduler

Page 75: Chapter 10 Multiprocessor and Real-Time Scheduling Operating Systems: Internals and Design Principles, 6/E William Stallings Dave Bremer Otago Polytechnic,

Windows Thread Dispatching Priorities

Page 76: Chapter 10 Multiprocessor and Real-Time Scheduling Operating Systems: Internals and Design Principles, 6/E William Stallings Dave Bremer Otago Polytechnic,

Windows Priority Relationship

Page 77: Chapter 10 Multiprocessor and Real-Time Scheduling Operating Systems: Internals and Design Principles, 6/E William Stallings Dave Bremer Otago Polytechnic,

Multiprocessor Scheduling

• With multiprocessors, multiple threads with the same highest priority share the processor in a round robin fashion– Lower-priority, threads must wait until the

other threads block or have their priority decay.

• Lower-priority threads may also have their priority boosted briefly to 15 if they are being starved, to prevent priority inversion.