0% found this document useful (0 votes)
218 views100 pages

CH 5 Process Scheduling

Uploaded by

blabla
Copyright
© © All Rights Reserved
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd
Download as pptx, pdf, or txt
0% found this document useful (0 votes)
218 views100 pages

CH 5 Process Scheduling

Uploaded by

blabla
Copyright
© © All Rights Reserved
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd
Download as pptx, pdf, or txt
Download as pptx, pdf, or txt
You are on page 1/ 100

Chapter 5:

Process Scheduling

Operating System Concepts – 9th Edition Silberschatz, Galvin and Gagne ©2013
Chapter 5: CPU Scheduling

 5.1 Basic Concepts


 5.2 Scheduling Criteria
 5.3 Scheduling Algorithms

OBJECTIVES
 To introduce CPU scheduling, which is the basis for
multiprogrammed operating systems
 To describe various CPU-scheduling algorithms

Operating System Concepts – 9th Edition 5.2 Silberschatz, Galvin and Gagne ©2013
5.1 Basic Concepts
 Maximum CPU utilization
obtained with
multiprogramming
 Most processes exhibit the
following behavior:
 CPU burst followed by I/O
burst
 CPU–I/O Burst Cycle –
Process execution consists
of a cycle of CPU
execution and I/O wait
 CPU burst distribution is of
main concern

Figure 5.1 Alternating sequence of CPU and I/O bursts


Operating System Concepts – 9th Edition 5.3 Silberschatz, Galvin and Gagne ©2013
Operating Systems

CPU-I/O Burst Cycle

{
printf(“Enter first integer: “);
scanf(“%d”, &b); (i)I/O________
cycle

y = b+(b*b)+1; (ii)
CPU ________
burst

printf(“\n b+(b*b)+1 = %d”, y);


(iii)
I/O________
cycle
}
Chapter 2

Figure: Example part of C language programming


4
Histogram of CPU-burst Times

Figure 5.2

Operating System Concepts – 9th Edition 5.5 Silberschatz, Galvin and Gagne ©2013
Operating Systems

Job and Process Status


• Jobs move through the system.
• Job scheduler (long-term) vs CPU scheduler (short-term)
Chapter 2

6
Operating Systems

• User submits job


(batch/interactive)

– Job accepted
• Put on HOLD and placed in queue
– Job state changes from NEW to READY
• Indicates job waiting for CPU
– Job state changes from READY to RUNNING
• When selected for CPU and processing
– Job state changes from RUNNING to WAITING
• Requires unavailable resources
– Job state changes to TERMINATED
Chapter 2

• Job completed (successfully or unsuccessfully)

7
Operating Systems

PCBs and Queuing


• Job PCB
– Created when Job Scheduler (JS) accepts job
– Updated as job executes
– Queues use PCBs to track jobs
– Contains all necessary job management processing data
– PCBs linked to form queues (jobs not linked)

– Manage queues using:


• Process scheduling policies and
Chapter 2

• Process algorithms

(Continued Next)
8
CPU Scheduler
 Whenever the CPU becomes idle, the operating system must
select one of the processes in the ready queue to be executed.

 The selection process is carried out by the CPU scheduler.

 The ready queue may be ordered in various ways.

 CPU scheduling decisions may take place when a process:


1. Switches from running state to waiting state
2. Switches from running state to ready state
3. Switches from waiting state to ready state
4. When a process terminates

Operating System Concepts – 9th Edition 5.9 Silberschatz, Galvin and Gagne ©2013
Nonpreemptive Scheduling
 For situations 1 and 4, there is no choice in terms of
scheduling. A new process (if one exists in the ready
queue) must be selected for execution.

 Under nonpreemptive scheduling, once the CPU has been


allocated to a process, the process keeps the CPU until it
releases the CPU either by terminating or by switching to
the waiting state.

Operating System Concepts – 9th Edition 5.10 Silberschatz, Galvin and Gagne ©2013
Preemptive scheduling
 There is a choice, however, for situations 2 and 3.

 Preemptive scheduling can result in race conditions when


data are shared among several processes.
 Consider the case of two processes that share data. While
one process is updating the data, it is preempted so that the
second process can run. The second process then tries to
read the data, which are in an inconsistent state.
 Consider preemption while in kernel mode
 Consider interrupts occurring during crucial OS activities

 Virtually all modern operating systems including Windows,


Mac OS X, Linux, and UNIX use preemptive scheduling
algorithms.

Operating System Concepts – 9th Edition 5.11 Silberschatz, Galvin and Gagne ©2013
Dispatcher

 Dispatcher module gives control of


the CPU to the process selected
by the CPU scheduler; this
involves:
 switching context
 switching to user mode
 jumping to the proper location in
the user program to restart that
program
 Dispatch latency – time it takes
for the dispatcher to stop one
process and start another running

Operating System Concepts – 9th Edition 5.12 Silberschatz, Galvin and Gagne ©2013
Operating Systems

Dispatch Latency
event Response to event

Response interval

Process made
available

Real-time
Interrupt Dispatch latency
Process
Processing
Execution

conflicts dispatch
Chapter 2

time
13
Operating Systems

Example:

Concurrent
Execution of
Processes
(1/3)
Chapter 2

14
Operating Systems

100
101
102
103
104
105

Dispatcher

100 = Starting address of dispatch program.


Chapter 2

15
Operating Systems

Notes:

• CPU time or instruction


A
cycle = 6 (each process)

• Assume all processes


execute in sequence with no
priority
A
• Shaded areas indicate
execution of dispatcher B
process

• 1st & 3rd columns show


number of instruction cycles
• 2nd & 4th columns shows
address of instruction being
executed C
Chapter 2

16
Operating Systems

Concurrent Execution of Processes


(Process States)
Chapter 2

17
Chapter 2 Operating Systems

18
Operating Systems

Process A

Process B

Process C

Dispatcher

Instruction Cycles
0 5 10 15 20 25 30 35 40 45 50 55 60 65 70

= Running = Ready = Blocked


Chapter 2

19
Operating Systems

Answer:
4 6
Process A
6 4
Process B
6 6 4
Process C

0 5 10 15 20 25 30 35 40 45 50 55 60 65 70

Dispatcher
Chapter 2

= Running = Ready = Blocked

20
Operating Systems

Answer:
4 6
Process A
6 4
Process B
6 6 4
Process C

Dispatcher

Instruction Cycles
0 5 10 15 20 25 30 35 40 45 50 55 60 65 70

= Running = Ready = Blocked


Chapter 2

21
Operating Systems

Exercise What is the process state for each process at x, y


and z ? Justify your answer.
Chapter 2

x y z
5.2 Scheduling Criteria

 CPU utilization – keep the CPU as busy as possible

 Throughput – number of processes that complete their


execution per time unit (e.g., 5 per second)
 Turnaround time – amount of time to execute a particular
process
 Waiting time – total amount of time a process has been
waiting in the ready queue
 Response time – amount of time it takes from when a
request was submitted until the first response is produced,
not output (for time-sharing environment)

Operating System Concepts – 9th Edition 5.23 Silberschatz, Galvin and Gagne ©2013
EXERCISE (DIY!!)
The table below shows the process’s location at memory for processes P, Q, R and
Dispatcher. A single processor is used to run all processes. Process P request for I/O at
instruction cycle 4 and wait up to 25 instruction cycles. Then, process R request for I/O at
instruction cycle 23 and wait up to 24 instruction cycles. All processes run from 0 to 100
instruction cycles with three different indicators for running, ready and blocked state (unit
in milliseconds). Assume that the maximum CPU burst for each process is 6 instruction
cycles. Calculate the following questions [8m]:

Process Addresses
P 3000-3050
Q 5000-5014
R 2000-2020
Dispatcher 200-205

i. What is the Turnaround Time of process Q? [2]


ii. At time 26, what are the states for P, Q, and R? [2]
iii. At time 43, what are the states for P, Q, and R? [2]
iv. At what time does process R get the CPU after the blocked state? [2]
v. What is the Waiting Time of Process P? [2]

Operating System Concepts – 9th Edition 5.24 Silberschatz, Galvin and Gagne ©2013
Optimization Criteria for Scheduling

 Max CPU utilization


 Keep CPU busy 100% of time.
 Max throughput
 Run as many jobs as possible in given amount of time.
 Min turnaround time
 Move entire job in and out of system quickly.
 Min waiting time
 Move job out of READY queue quickly.
 Min response time
 Quickly turn around interactive requests.

Operating System Concepts – 9th Edition 5.25 Silberschatz, Galvin and Gagne ©2013
5.3 Scheduling Algorithm

Based on specific policy


 Allocate CPU and move job through system

Algorithm types
 First –come, First-serve (FCFS)
 Shortest-Job-First Scheduling (SJF)
 Round-Robin Scheduling (RR)
 Priority Scheduling
 Multilevel Queue Scheduling

Current systems emphasize interactive use and


response time (use preemptive policies)

Operating System Concepts – 9th Edition 5.26 Silberschatz, Galvin and Gagne ©2013
First- Come, First-Served (FCFS) Scheduling
 Non-preemptive
 Job handled based on arrival time. Earlier job arrives, earlier served.
 Consider the following three processes and their burst time.

Process Burst Time (ms)


P1 24
P2 3
P3 3
 Suppose that the processes arrive in the order: P1 , P2 , P3
 We use Gantt Chart to illustrate a particular schedule

P1 P2 P3
0 24 27 30

 Waiting time for P1 = 0; P2 = 24; P3 = 27


 Average waiting time: (0 + 24 + 27)/3 = 17

Operating System Concepts – 9th Edition 5.27 Silberschatz, Galvin and Gagne ©2013
FCFS Scheduling (Cont.)

 Suppose that the processes arrive in the order:


P2 , P3 , P1
 The Gantt chart for the schedule is:

P2 P3 P1
0 3 30

 Waiting time for P1 = 6; P2 = 0; P3 = 3


 Average waiting time: (6 + 0 + 3)/3 = 3
 Much better than previous case
 Convoy effect - short process behind long process
 Consider one CPU-bound and many I/O-bound processes

Operating System Concepts – 9th Edition 5.28 Silberschatz, Galvin and Gagne ©2013
Operating Systems

FCFS: Example 1
Three processes arrived in order Job A, Job B, Job C at time t0
with different CPU burst. Calculate the average waiting time and
average turn around time. Assume that FCFS algorithm applied.

Process Burst Time


Job A 15
Job B 2
Job C 1

Job Job Job


A B C
Chapter 2

0 15 17 18

(Continued Next)
29
Operating Systems

Job A Job B Job C


0 15 17 18

Solution:

Process Burst Time Waiting Time Turnaround Time


Job A 15 0 15 – 0 = 15
Job B 2 15 17 – 0 = 17
Job C 1 17 18 – 0 = 18

• Average Waiting Time =


Chapter 2

• Average Turnaround Time =


Turnaround Time = Completion time – Arrival time

Waiting Time = Turnaround time time – Burst time 30


Operating Systems

FCFS: Example 2
Three processes arrived in order Job C, Job B, Job A at time t0
with different CPU burst time. Calculate the average waiting
time and average turn around time. Assume that FCFS
algorithm applied.
Process CPU Burst Time
Job C 1
Job B 2
Job A 15

Job Job Job


C B A
0 1 3 18
Chapter 2

• Average Waiting Time =

• Average Turnaround Time =

31
Operating Systems
Ex
tr a
Exercise 1:

Three processes Job A, Job B, Job C arrived at different time


with the length of CPU burst given in milliseconds (ms).
Calculate the average waiting time and average turn around
time. Assume that FCFS algorithm applied.

Arrival Time Process CPU Burst


t0 Job A 15
t1 Job B 2
t2 Job C 1
Chapter 2

Turnaround Time = Completion time – Arrival time

Waiting Time = Turnaround time time – Burst time 32


Operating Systems

Solution 1 : Job A Job B Job C


0 15 17 18

Arrival Time Process CPU Burst Waiting Time Turnaround Time


t0 Job A 15 0 15 – 0 = 15
t1 Job B 2 15 – 1 = 14 17 – 1 = 16
t2 Job C 1 17 – 2 = 15 18 – 2 = 16

• Average Waiting Time = ms


Chapter 2

• Average Turnaround Time = ms

33
Operating Systems

FCFS:
• Good for batch systems
• Unacceptable in interactive systems
– Unpredictable waiting/turnaround time

• Disadvantages
– Average waiting/turnaround time varies; seldom
minimized
– Convoy effect whereby short processes queue
behind long processes;
• Results in lower CPU and device utilization
Chapter 2

34
Shortest-Job-First (SJF)/SJN

 None pre-emptive
 Also known as Shortest Job Next (SJN)
 Associate with each process the length of its next CPU
burst/cycle time
 Use these lengths to schedule the process with the shortest
time
 SJF is optimal – gives minimum average waiting time for a
given set of processes
 How do we know what is the length of the next CPU request
 Could ask the user
 what if the user lies?

Operating System Concepts – 9th Edition 5.35 Silberschatz, Galvin and Gagne ©2013
Example of SJF/SJN

 Consider the following four processes and their burst time


Process Burst Time (ms)
P1 6
P2 8
P3 7
P4 3
 SJF scheduling chart

P4 P1 P3 P2
0 3 9 16 24

Turnaround Time = Completion time – Arrival time

Waiting
Operating Time
System = Turnaround
Concepts – 9th Edition time time – Burst
5.36 time Silberschatz, Galvin and Gagne ©2013
Solutions
P4 P1 P3 P2
0 3 9 16 24

Process Burst time (ms) Turnaround time Waiting Time

P1 6 9–0=9 9–6=3

P2 8 24 – 0 = 24 24 – 8 = 16

P3 7 16 – 0 = 16 16 – 7 = 9

P4 3 3–0=3 3–3=0

52/4 = 13 28/4 = 7

Operating System Concepts – 9th Edition 5.37 Silberschatz, Galvin and Gagne ©2013
Operating Systems

SJF/SJN: Example 3

Four processes Job A, Job B, Job C and Job D arrived at time t0


with different CPU burst. Calculate the average waiting time and
average turn around time. Assume that SJN algorithm applied.

Process CPU Burst


Job A 5
Job B 2
Job C 6
Job D 4
Chapter 2

38
Operating Systems

Solution:

Process Burst Time Waiting Time Turnaround Time


Job A 5 6 11
Job B 2 0 2
Job C 6 11 17
Job D 4 2 6

• Average Waiting Time :


= A + B + C + D = 6 + 0 + 11 + 2 = 4.75
4 4
Chapter 2

• Average turnaround time:


= A + B + C + D = 11 + 2 + 17 + 6 = 9.0
4 4
39
Operating Systems

Job Job Job Job


B D A C
0 2 6 11 17

• We can see:
- Job B finishes in its given time, (2)
- Job D finishes in its given time plus the time waited for
Job B to run, (4+2)
- Job A, time given plus B’s time, (5+4+2)
- Job C, time given plus A’s time, (6+ 5+4+2)
Chapter 2

40
Operating Systems

Waited time

(2) + (4 + 2) + (5 + 4 + 2) + (6 + 5 + 4 + 2) = 9.0
4

• As we can see:
- The time 1st job (B) appears 4 times; The 2nd job (D)
appears 3 times ; The 3rd job (A) appears 2 times and
n = number of job in queue; tj (j=1,2,3,…,n)

the 4th job (C) appears only once (1).

• Equation can be rewrite as:


(B)*4 + (D)*3 + (A)*2 + (C)*1 = 9.0
4
• Formula for average:
Chapter 2

t1(n) + t2(n-1) + t3(n-2) + . . + tn(n(1))


n

41
Operating Systems

SJN / SJF:
• Easy implementation in batch environment
– CPU time requirement known in advance

• Does not work well in interactive systems

• Optimal algorithm
– All jobs are available at same time.
– CPU estimation are available and more accurate.

• If 2 processes have the same CPU bursts (cycle time),


Chapter 2

FCFS may be used.

42
Operating Systems
Ex
tr a
Exercise 2:

Four processes Job A, Job B, Job C and Job D arrived at time t0


with different CPU burst in milliseconds (ms). At t2 , another
processes Job X and Job Y arrived with its own CPU burst time.
Calculate the average waiting time and average turnaround
time. Assume that SJN algorithm applied and each ti = i CPU
Burst.
Arrival Time (t) Process CPU Burst
0 Job A 5
Job B 2
Job C 6
Job D 4
Chapter 2

2 Job X 3
Job Y 1

43
Operating Systems
Ex
tr a
Solution 2:

Job Job Job Job Job Job


B Y X D A C
0 2 3 6 10 15 21

A5 A5 A5 A5 A5 C6
B2 C6 C6 C6 C6 Processes in
C6 D4 D4 D4 system to use
CPU
D4 X3 X3
Y1 Note: JobCPU
Chapter 2

44
Operating Systems
Ex
tr a

Job Job Job Job Job Job


B Y X D A C
0 2 3 6 10 15 21

Arrival Time Process CPU Burst Waiting Time Turnaround Time


t0 Job A 5 10 15
Job B 2 0 2
Job C 6 15 21
Job D 4 6 10
t2 Job X 3 3–2=1 6–2=4
Job Y 1 2–2=0 3–2=1
Chapter 2

• Average Waiting Time =

• Average Turnaround Time =


45
Shortest-remaining-time-first (SRT/SRTF)
 A preemptive version of SJF is called shortest-remaining-time-first
 Processor allocated to job closest to completion.
 Preemptive if the newer job has shorter completion time.
 Example illustrating the concepts of varying arrival times and
preemption.
Process Arrival Time (t) CPU Burst Turnaround Waiting
P1 0 8 17 – 0 = 17 17 – 8 = 9
P2 1 4 5–1=4 4–4=0
P3 2 9 25 – 2 = 23 23 – 9 = 14
P4 3 5 10 – 3 = 7 7–5=2

P1 P2 P4 P1 P3
0 1 5 10 17 25
 Average turnaround time = 51 /4 = 12.75 ms
 Average waiting time = 6.25 ms
Operating System Concepts – 9th Edition 5.46 Silberschatz, Galvin and Gagne ©2013
Operating Systems

• SRT : Example 4

Process Burst Time Arrival Time


Job A 6 t0 = 0.0
Job B 3 t1 = 1.0
Job C 1 t2 = 2.0
Job D 4 t3 = 3.0

Job Job Job Job Job Job


A B C B D A
0 1 2 3 5 9 14
Chapter 2

47
Operating Systems

Here Job A is preempted by Job B because Job B has less CPU time remaining.

Here Job B is preempted by Job C because Job C has less CPU time
remaining.
Now Job B can resume because Job C has finished.

Job D run next because it needs less CPU time to


finish than does Job A.

Here Job A is finally allow to finish (resume).


Chapter 2

Job Job Job Job Job Job


A B C B D A
0 1 2 3 5 9 14
48
Operating Systems

Process Burst Time Arrival Time Completion Time


Job A 6 0.0 14
Job B 3 1.0 5
Job C 1 2.0 3
Job D 4 3.0 9

Job Job Job Job Job Job


A B C B D A
0 1 2 3 5 9 14
Chapter 2

49
Operating Systems

Process Burst Time Arrival Time Turnaround time Waiting time


Job A 6 0.0 14 – 0 = 14 14 – 6 = 8
Job B 3 1.0 5–1=4 4–3=1
Job C 1 2.0 3–2=1 1–1=0
Job D 4 3.0 9–3=6 6–4=2

Job Job Job Job Job Job


A B C B D A
0 1 2 3 5 9 14

• Average turnaround time = (14+4+1+6)/4 = 6.25 ms

• Average waiting time = (8+1+0+2)/4 = 2.75 ms


Chapter 2

50
Operating Systems

• Example 5 (Nonpreemptive SJN/SJF)

Job Job Job Job


A C B D
0 6 7 10 14

Process CPU Burst Arrival Time Completion Time


Job A 6 0.0 6
Job B 3 1.0 10
Job C 1 2.0 7
Job D 4 3.0 14
Chapter 2

Note: Job A initially in the READY queue so it runs first and


continues with the rest.

(Continued Next)
51
Operating Systems

Job Job Job Job


A C B D
0 6 7 10 14

Process CPU Time Job in Job in READY


Burst CPU queue
Job A 6 0.0 A -
Job B 3 1.0 A B
Job C 1 2.0 A B, C
Job D 4 3.0 A B, C, D
6.0 C B, D
7.0 B D
Chapter 2

10.0 D -

(Continued Next)
52
Operating Systems

Job Job Job Job


A C B D
0 6 7 10 14
• Turnaround time:
Job : A B C D
Turnaround : 6 9 5 11

• Average turnaround time: 6 + 9 + 5 + 11 = 7.75


4
• Comparison between example 4 and 5:
Chapter 2

- SRT (6.25) is faster than SJN/SJF (7.75)


 (0.12% faster)

53
Operating Systems

SRT:
• Often used in batch environments
– Short jobs given priority

• Cannot implement in interactive system


– Requires advance CPU time knowledge

• Involves more overhead than SJN/SJF


– System monitors CPU time for READY queue jobs
– Performs context switching
Chapter 2

54
Round Robin (RR)
 Preemptive. Used extensively in interactive systems.

 Each process gets a small unit of CPU time (time quantum q).
After this time has elapsed, the process is preempted and
added to the end of the ready queue (FCFS).
 Time quantum size
 Crucial to system performance
 Varies from 100 ms to 1-2 seconds

 If there are N processes in the ready queue and the time


quantum is q, then each process gets 1/N of the CPU time in
chunks of at most q time units at once. No process waits more
than (N-1)q time units.
 Timer interrupts every quantum to schedule next process.

Operating System Concepts – 9th Edition 5.55 Silberschatz, Galvin and Gagne ©2013
Operating Systems

• If job CPU burst > time quantum


– Job preempted and placed at end of READY queue
– Information saved in PCB

• If job CPU burst < time quantum


– 1) Job finished:
• allocated resources released and job returned to user

– 2) Interrupted by I/O request:


• information saved in PCB and linked to I/O queue
Chapter 2

• Once I/O request satisfied, Job returns to end of


READY queue and awaits CPU
(Continued Next)
56
Operating Systems

• Efficiency
– Depends on time quantum size
• In relation to average CPU burst

• Quantum too large (larger than most


CPU bursts)
– Algorithm reduces to FCFS scheme

• Quantum too small


– Context switching occurs
Chapter 2

• Job execution slows down


• Overhead dramatically increased

57
Example of RR with Time Quantum = 4

 Consider the following three processes and their burst time


Process Burst Time
P1 24
P2 3
P3 3

 The Gantt chart is:


P1 P2 P3 P1 P1 P1 P1 P1
0 4 7 10 14 18 22 26 30

 The average waiting time under the RR policy is often longer.


 Typically, higher average turnaround than SJF, but better
response.
 q should be large compared to context switch time.
 q is usually 10ms to 100ms, context switch < 10 usec

Operating System Concepts – 9th Edition 5.58 Silberschatz, Galvin and Gagne ©2013
Operating Systems

• RR : Example 6

Process CPU Arrival Time


Burst
Job A 8 0.0
Job B 4 1.0
Chapter 2

Job C 9 2.0
Time Slice =
Job D 5 3.0 4 milliseconds

(Continued Next)
59
Operating Systems

Time:
0 1 2 3 4 5 6 7 8 12 16 20 24 25 26

A8 A 7 A6 A5 A 4 A4 A4 A4
B4 B4 B4 B4
C9 C9 C9 C9 C5 C5
C5 C1 C1
D5 D 5 D5 D5 D1
Chapter 2

D1 D1

Note: JobCPU Time Slice = 4 ms

60
Operating Systems

Process CPU Arrival Time Completion Turnaround


Burst Time Time
Job A 8 0.0 20 20 – 0 = 20
Job B 4 1.0 8 8–1=7
Job C 9 2.0 26 26 – 2 = 24
Job D 5 3.0 25 25 – 3 = 22

Average Turnaround Time =


Chapter 2

(Continued Next)
61
Operating Systems
NE
W

Process CPU Arrival Time Waiting Time


Burst
Job A 8 0.0 (0 – 0) + (16
? – 4) = 12
Job B 4 1.0 4–1
?=3
Job C 9 2.0 (8 – 2) + (20 – 12)
? + (25 – 24) = 15
Job D 5 3.0 (12 – 3) + (24
? – 16) = 17
Chapter 2

Average Waiting Time =

62
Time Quantum and Context Switch Time

 The performance of the RR algorithm depends on the size of


the time quantum. If the time quantum is extremely small
(say, 1 millisecond), RR can result in a large number of
context switches.

Operating System Concepts – 9th Edition 5.63 Silberschatz, Galvin and Gagne ©2013
Turnaround Time Varies With The Time Quantum

 The average turnaround time of a set of processes does not


necessarily improve as the time-quantum size increases. In
general, the average turnaround time can be improved if
most processes finish their next CPU burst in a single time
quantum.

Operating System Concepts – 9th Edition 5.64 Silberschatz, Galvin and Gagne ©2013
Operating Systems

• RR : Example 7
Chapter 2

65
Operating Systems

• Case (a)
- There is no context switch
- Job A runs to completion since CPU burst end shortly before
time quantum expires
- No different between RR and FCFS policies

• Case (b)
- There is 1 context switch for the rest of Job A.
Chapter 2

- Job A is preempted once when the time quantum expires

(Continued Next)
66
Operating Systems

• Case (c)
- There is 10 context switches for 2nd cycle of Job A.
- The job is preempted every time the time quantum expires

• Weakness for case (b) & (c):


- Overhead become costly
- Turnaround time suffers
Chapter 2

(Continued Next)
67
Priority Scheduling

 A priority number (integer) is associated with each process.

 The CPU is allocated to the process with the highest priority.


(smallest integer  highest priority)
 Preemptive
 Nonpreemptive

 SJF/SJN is priority scheduling where priority is the inverse of


predicted next CPU burst time.
 Problem  Starvation – low priority processes may never
execute.
 Solution  Aging – as time progresses increase the priority of
the process.

Operating System Concepts – 9th Edition 5.68 Silberschatz, Galvin and Gagne ©2013
Example of Priority Scheduling
 Consider the following five processes and their burst time
Process CPU Burst Priority Turnaround Waiting time
time
P1 10 3 16 – 0 = 16 16 – 10 = 6
P2 1 1 1–0=1 1–1=0
P3 2 4 18 – 0 = 18 18 – 2 = 16
P4 1 5 19 – 0 = 19 19 – 1 = 18
P5 5 2 6–0=6 6–5=1

P2 P5 P1 P3 P4
0 1 6 16 18 19
 Priority scheduling Gantt Chart

Operating System Concepts – 9th Edition 5.69 Silberschatz, Galvin and Gagne ©2013
Operating Systems

• System Administrator or Processor Manager use different


methods of assigning priorities.
• Processor Manager priority assignment methods:
– Memory requirements
• Jobs requiring large amounts of memory
• Allocated lower priorities (vice versa)
– Number and type of peripheral devices
• Jobs requiring many peripheral devices
• Allocated lower priorities (vice versa)
– Total CPU time
• Jobs having a long CPU burst
• Given lower priorities (vice versa)
– Amount of time already spent in the system (aging)
Chapter 2

• Total time elapsed since job accepted for processing


• Increase priority if job in system unusually long time

70
Operating Systems
Ex
tr a
Exercise 3:
Five processes Job A, Job B, Job C, Job D and Job E arrived
at time t0 with different CPU burst and priority level. Calculate
the average waiting time and average turnaround time.
Assume the following scheduling algorithm applied separately.

a) FCFS, SJN and Priority


b) Which one is the best in term of average waiting time and
turnaround time? Why?

Process CPU Burst Priority


Job A 10 3
Job B 1 1
Chapter 2

Job C 2 4
Job D 1 5
Job E 5 2
71
Combining Priority Scheduling and RR

 System executes the highest priority process; processes with


the same priority will be run using round-robin (q = 2).
 Consider the following five processes and their burst time
Process Burst Time Priority

P1 4 3

P2 5 2

P3 8 2

P4 7 1

P5 3 3

Priority scheduling Gantt Chart


P5 P1 P5 P1

25

 Average waiting time = 13.2 ms ( previously 8.2 ms)

Operating System Concepts – 9th Edition 5.72 Silberschatz, Galvin and Gagne ©2013
Combining Priority Scheduling and RR
P5 P1 P5 P1

25

Process Burst Time Priority Turnaround time Waiting time

P1 4 3 27 – 0 = 27 27 – 4 = 23

P2 5 2 16 – 0 = 16 16 – 5 = 9

P3 8 2 20 – 0 = 20 20 – 8 = 12

P4 7 1 7–0=7 7–7=0

P5 3 3 25 – 0 = 25 25 – 3 = 22

 Average waiting time = 13.2 ms (previously 8.2 ms)


 Average turnaround time = 19 ms

Turnaround Time = Completion time – Arrival time

Waiting
Operating Time
System = Turnaround
Concepts – 9th Edition time time – Burst
5.73 time Silberschatz, Galvin and Gagne ©2013
Multilevel Queue
 Hybrid environment. Ready queue is partitioned into separate
queues, eg:
 foreground (interactive)
 background (batch)
 Process permanently in a given queue
 Each queue has its own scheduling algorithm:
 foreground – RR
 background – FCFS
 Scheduling must be done between the queues:
 Fixed priority scheduling; (i.e., serve all from foreground then from
background). Possibility of starvation.
 Time slice – each queue gets a certain amount of CPU time which
it can schedule amongst its processes;
 i.e., 80% to foreground in RR, 20% to background in FCFS
Operating System Concepts – 9th Edition 5.74 Silberschatz, Galvin and Gagne ©2013
Separate Queue For Each Priority
 Works in conjunction with several other schemes
 Works well in systems with jobs grouped by common
characteristics.

Operating System Concepts – 9th Edition 5.75 Silberschatz, Galvin and Gagne ©2013
Operating Systems

• Four primary methods:

1. Not allowing movement between queues

2. Movement jobs between queues

3. Variable Time Quantum Per Queue

4. Aging- giving special treatment to jobs that have been in


the system for a long time
Chapter 2

(Continued Next)
76
Operating Systems

Case 1: No Movement Between Queues


• Simple

• Rewards high-priority jobs


– Processor allocated using FCFS

• Processor allocated to lower-priority jobs


– Only when high-priority queues empty

• Good environment
Chapter 2

– Few high-priority jobs


– Spend more time with low-priority jobs

77
Operating Systems

Case 1: No Movement Between Queues


(FCFS) CPU

Q1
(High Priority)

Q2
(Low Priority

J2 J4
J1
Chapter 2

J5
J3

Arrival of jobs: J1, J2, J3, J4, J5


78
Operating Systems

Case 1: No Movement Between Queues


(FCFS) CPU

Q1 J3 J2
(High Priority)

Q2 J5 J4 J1
(Low Priority
Chapter 2

79
Operating Systems

Case 2: Movement Between Queues


• Processor adjusts priorities assigned to each job

• High-priority jobs
– Initial priority favorable
• Treated like all other jobs afterwards

• Quantum interrupt
– Job preempted
• Moved to next lower queue
• May have priority increased
Chapter 2

• Good environment
– Jobs handled by cycle characteristics (CPU or I/O)
– Interactive systems 80
Operating Systems

Case 2: Movement Between Queues


(Time Quantum = 5) CPU

Q1
(High Priority)

Q2 Job CPU Burst


(Low Priority 1 5
2 10
3 4
J2 J4
J1 4 2
Chapter 2

5 3
J5
J3

Arrival of jobs: J1, J2, J3, J4, J5


81
Operating Systems

Case 2: Movement Between Queues


(Time Quantum = 5) CPU

Q1 J3 J2
(High Priority)

Q2 J2
J2 J5 J4 J1 Job CPU Burst
(Low Priority 1 5
5 2 10
3 4
4 2
Chapter 2

5 3

82
Operating Systems

Case 3: Variable Time Quantum Per Queue


• Is a variation of the movement between queues
• Each queue given time quantum size
– Size twice as long as previous queue
• Fast turnaround for CPU-bound jobs
• CPU-bound jobs execute longer and given longer time
periods
– Improves chance of finishing faster

I/O-bound jobs (such as printing a series of documents) have many brief


CPU bursts and long I/O cycles,
Chapter 2

CPU-bound jobs (such as finding the first 300 prime numbers) have
long CPU bursts and shorter I/O cycles.

83
Operating Systems

Case 3: Variable Time Quantum Per Queue


(Time Quantum = 5) CPU

Q1 J3 J2
(High Priority)

(Time Quantum = 10)

Q2 J2
J2 J5 J4 J1 Job CPU Burst
(Low Priority) 1 9

10 2 15
3 4
4 2
Chapter 2

5 3

84
Operating Systems

Case 4: Aging
• Ensures lower-level queue jobs eventually complete
execution
• System keeps track of job wait time
• If too “old”
– System moves job to next highest queue
– Continues until old job reaches top queue
– May drastically move old job to highest queue
• Advantage
– Guards against indefinite unwieldy job postponement
Chapter 2

85
Operating Systems

Case 4: Aging
(FCFS) CPU

Q1
(High Priority)

Q2 Job CPU Burst


(Low Priority 1 9
2 100
3 30
J1 J2 4 20
Chapter 2

5 5

Arrival of jobs at t0: J1, J2


86
Operating Systems

Case 4: Aging
(FCFS) CPU

Q1 J2
(High Priority)

Q2 J1 Job CPU Burst


(Low Priority 1 9
2 100
3 30
4 20
Chapter 2

5 5

Job 2 is running
87
Operating Systems

Case 4: Aging
(FCFS) CPU

Q1 J2
(High Priority)

Q2 J1 Job CPU Burst


(Low Priority 1 9
2 100
3 30
4 20
Chapter 2

5 5
J3 J4

t50  Next new jobs arrived: J3, J4 (low priority), J2 still running
88
Operating Systems

Case 4: Aging
(FCFS) CPU

Q1 J2
(High Priority)

Q2 J4 J3 J1 Job CPU Burst


(Low Priority 1 9
2 100
3 30
4 20
J5
Chapter 2

5 5

t70  Next new jobs arrived: J5 (High priority),


J2 still running, J1 has been waiting 70 CPU burst time
89
Operating Systems

Case 4: Aging
(FCFS) CPU

Q1 J5 J1 J2
(High Priority)

Q2 J4 J3 Job CPU Burst


(Low Priority 1 9
2 100
3 30
4 20
Chapter 2

5 5

t100  J2 , completed. J5 then running.


Continued with low priority jobs.
90
Multilevel Queue Scheduling

Operating System Concepts – 9th Edition 5.91 Silberschatz, Galvin and Gagne ©2013
Operating Systems

#SJF Summary (cont'd.)


#can be preemptive also
Chapter 2

92
Multilevel Feedback Queue

 A process can move between the various queues; aging can


be implemented this way.
 The idea is to separate process according to the
characteristics of their CPU bursts.
 Multilevel-feedback-queue scheduler defined by the following
parameters:
 number of queues
 scheduling algorithms for each queue
 method used to determine when to upgrade a process
 method used to determine when to demote a process
 method used to determine which queue a process will enter
when that process needs service

Operating System Concepts – 9th Edition 5.93 Silberschatz, Galvin and Gagne ©2013
Example of Multilevel Feedback Queue

 Three queues:
 Q0 – RR with time quantum 8
milliseconds
 Q1 – RR time quantum 16 milliseconds
 Q2 – FCFS

 Scheduling
 A new job enters queue Q0 which is
served FCFS
 When it gains CPU, job receives 8 • Processes in queue Q2 are run on an
milliseconds FCFS basis but are run only when
 If it does not finish in 8 milliseconds, job queues Q0 and Q1 are empty.
is moved to queue Q1 • This scheduling algorithm gives highest
priority to any process with a CPU burst
 At Q1 job is again served FCFS and
of 8 ms or less.
receives 16 additional milliseconds
 If it still does not complete, it is
preempted and moved to queue Q2
Operating System Concepts – 9th Edition 5.94 Silberschatz, Galvin and Gagne ©2013
Operating Systems
Ex
tr a
MFQ: Exercise 9
Five processes Job A, Job B, Job C, Job D and Job E arrived at time
t0 with different CPU burst and priority level. Assume that MFQ
Scheduling algorithm is applied with 2 levels and the priority range 1
Highest. By given an initial time quantum for the first level is 5 CPU
bursts and the last level using FCFS, calculate the average waiting
time and average turnaround time.

Process CPU Burst Priority


Job A 10 3
Job B 1 1
Job C 2 4
Chapter 2

Job D 1 5
Job E 5 2

95
Process CPU Burst Priority
NE
W
Operating Systems
Job A 10 5 0 3
Job B 1 0 1
Job C 2 0 4
Job D 1 0 5
Job E 5 0 2

5 4 3 2 1

Job D Job C Job A Job E Job B CPU

Q0 JB JE JA JC JD
time quantum = 5
0 1 6 11 13 14

Q1 JA
FCFS
14 19
Chapter 2

96
Operating Systems

Process CPU Burst Priority Completion Turnaround time Waiting time


Job A 10 3 19 19 – 0 = 19 (6 – 0)+(14 – 11) = 10
Job B 1 1 1 1–0=1 0-0=0
Job C 2 4 13 13 – 0 = 13 11 – 0 = 11
Job D 1 5 14 14 - 0 = 14 13 – 0 = 13
Job E 5 2 6 6–0=6 1-0=1

Q0 JB JE JA JC JD
time quantum = 5
0 1 6 11 13 14

Q1 JA
FCFS
14 19

Average Turnaround Time = (20 + 1 + 13 + 1 4+ 6)/5 = 10.6 ms


Chapter 2

Average Waiting Time = (10 + 0 + 11 + 13 + 1)/5 = 7 ms

97
Operating Systems

EXERCISE (DIY!!)
The table below shows five jobs A, B, C, D and E arrived at different times and with different
CPU bursts. The Multilevel Feedback Queue (MFQ) scheduling is used with three queues (Qi).
Given an initial time, the quantum for the Q 0 is 5, Q1 is 10 and the last queue uses FCFS.
Calculate the following questions [12m]:

Jobs Arrival Time CPU Burst


A 0 15
B 4 35
C 26 4
D 28 24
E 32 33

i. What is the maximum value of CPU burst time that the jobs get at the Q1 level? [2]
ii. Which job(es) will finish at level Q1? [2]
iii. At the Q1 level, what is the second job that gets the CPU, and at what time does it
Chapter 2

occur? [2]
iv. What is the Waiting Time of Process B? [2]
v. What is the Average Turnaround time? [2]
vi. What is the Average Waiting time? [2]
98
Operating Systems

Summary
• Processor Manager allocates CPU among all users
• Job Scheduler
– Assigns job to READY queue
• Based on characteristics
• Process Scheduler
– Instant-by-instant allocation of CPU
• Scheduling algorithm is unique
– Characteristics, objectives, and applications
• System designer selects best policy and algorithm
Chapter 2

– After careful strengths and weaknesses evaluation

99
End of Chapter 5

Operating System Concepts – 9th Edition Silberschatz, Galvin and Gagne ©2013

You might also like