Chapter 6: CPU Scheduling

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

1/4

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.

5 Terms

1
New cards

CPU Scheduling

Process of determining which process or thread will use the CPU at any given time, based on the scheduling algorithm and current system state

2
New cards

CPU Scheduling Decisions

Occur when a process switches from running to waiting (nonpreemptive), running to ready (preemptive), waiting to ready (preemptive), or terminates (nonpreemptive)

3
New cards

Dispatcher

Transfers control of the CPU from one process to another

4
New cards

Scheduling Algorithms

First-Come First-Serve (FCFS): Non-preemptive scheduling algorithm where processes are executed in the order they arrive. It is simple and fair but can lead to the "convoy effect," where short processes wait behind long ones.

Shortest Job First (SJF): Non-preemptive scheduling algorithm that selects the process with the shortest burst time. It minimizes average waiting time but can cause starvation for longer processes.

Shortest Remaining Time First (SRTF): preemptive version of SJF where the process with the shortest remaining time is selected next. It improves response time for short processes but can lead to high context switching.

Round Robin (RR): Preemptive scheduling algorithm that assigns a fixed time slice (quantum) to each process in the ready queue. It is simple and fair but may lead to high context switching if the quantum is too small.

Priority Scheduling: Selects processes based on priority levels. It can be preemptive or non-preemptive. Higher-priority processes are executed before lower-priority ones, but it can lead to starvation for low-priority processes. This issue can be solved by aging, which means increasing the priority for “older” processes.

5
New cards

CPU Burst

Amount of time the process uses the processor before it is no longer ready

Length determined by exponential averaging