Process Management – CPU Scheduling

0.0(0)
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/24

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

25 Terms

1
New cards

Non- preemptive:

Once a process is on CPU it cannot be interrupted by any other process until the current CPU burst has been completed

2
New cards

Non- preemptive examples

FCFS (First come first serve)

3
New cards

SJF (shortest job first)

4
New cards

Priority

5
New cards

Preemptive

a process running on the CPU can be interrupted for the arrival of a higher priority process or for a time quantum.

6
New cards

Preemptive examples

Round Robin (FCFS with Time Quantum)

7
New cards

SRT- Shortest remaining time first (Preemptive of SJF)

8
New cards

Preemptive priority

9
New cards

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

10
New cards

Dispatch latency

time it takes for the dispatcher to stop one process and start another running

11
New cards

CPU utilization

keep the CPU as busy as possible

12
New cards

Throughput

of processes that complete their execution per time unit

13
New cards

Turnaround time

amount of time to execute a particular process

14
New cards

Waiting time

amount of time a process has been waiting in the ready queue

15
New cards

Response time

amount of time it takes from when a request was submitted until the first response is produced, not output

16
New cards

SJF Advantages

gives minimum average response time

17
New cards

SJF Disadvantages

long-running jobs may starve if too many short jobs

18
New cards

Shortest Remaining Time First

preemptive version of SJF

19
New cards

SJF Scheduling - Prediction formula

𝑆𝑛+1 = 𝛼𝑇𝑛 + (1 − 𝛼)𝑆�

20
New cards

Priority Scheduling

A priority is associated with each process, and the CPU is allocated to the process with the highest priority.

21
New cards

priority scheduling problem

Starvation - low priority processes may never execute

22
New cards

priority scheduling solution

Aging - as time progresses increase the priority of the process

23
New cards

time quantum q

The small unit of CPU time allocated to each process in Round Robin scheduling.

24
New cards

q large

FIFO

25
New cards

q small

q must be large with respect to context switch, otherwise overhead is too high