CPU scheduling

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

1/12

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.

13 Terms

1
New cards

What happens when an interrupt occurs in CPU scheduling?

  • CPU stops current code execution.

  • All data is stored.

  • CPU switches to kernel mode.

  • Two mode switches: to OS and back to user mode.

2
New cards

What does CPU scheduling decide?

  • When a process needs to change state.

  • Involves long-term, medium-term, and short-term scheduling.

3
New cards

What is long-term scheduling?

  • Adds new processes to the execution pool.

  • Controls the degree of multiprogramming.

4
New cards

What is medium-term scheduling?

  • Manages swapping between main memory and secondary storage.

  • Decides how much CPU to allocate to processes.

5
New cards

What is short-term scheduling?

  • Picks which ready process to run next on the CPU.

  • Also known as the dispatcher.

6
New cards

What criteria do short-term scheduling algorithms use?

  • Optimizing user or system behavior.

  • Including throughput, wait time, and fairness.

7
New cards

What's the difference between preemptive and non-preemptive scheduling?

  • Non-preemptive: Process runs until it blocks or finishes.

  • Preemptive: OS can interrupt and switch running processes.

8
New cards

How does FCFS scheduling work?

  • The oldest waiting process is assigned to the CPU next.

  • Non-preemptive with no timer interrupts.

9
New cards

What is Round Robin scheduling?

  • Processes get equal CPU time slices.

  • Preemptive, with time slices dictating switches.

10
New cards

What is Shortest Process Next scheduling?

Prioritizes process with shortest expected duration.

Non-preemptive; longer tasks may face starvation.

11
New cards

How does Shortest Remaining Time scheduling work?

Chooses process with least time left to completion.

Preemptive; can interrupt longer tasks for new, shorter ones.

12
New cards

What is the Highest Response Ratio Next scheduling strategy?

Selects process with highest wait-to-service time ratio.

Non-preemptive; accounts for both service time and wait time.

13
New cards

What are multilevel feedback queues in scheduling?

  • Processes are placed in priority queues.

  • I/O bound processes move up, CPU bound processes move down.

  • Uses preemptive FCFS within each queue.