본문 바로가기
OS

CPU Scheduling Algorithms (3)

by returnpie 2021. 12. 5.

CPU Scheduling Algorithms (3)

 

Shortest Remaining Time First(SRTF) Scheduleing Algorithm

 

Preemptive version of SJF.

 

Response time = start process time(?) - arrival time

 

In any non-preemptive scheduleing algorithm,

Response time = Waiting time

but this not be true for preemptive scheduling algorithms

 

 

First Come First Served(FCFS) Scheduling Algorithm

 

- The process which has the least arrival time will be scheduled first

- It is a non-preemptive scheduling algorithm

- It is not a priority based scheduling algorithm

 

FCFS with Context Switching overhead

'OS' 카테고리의 다른 글

CPU Scheduling Algorithms (2)  (0) 2021.11.28
CPU Scheduling Algorithms (1)  (0) 2021.11.28
Operating System Concepts  (0) 2021.11.25
Introduction to Operating Systems  (0) 2021.11.25