The full picture
🎬 Round Robin scheduling with I/O blocking
1 / 5Round Robin with a fixed time quantum. Three processes wait in the ready queue; the scheduler gives each a slice of CPU in turn.
| Algorithm | Optimizes | Fatal flaw | Modern echo |
|---|---|---|---|
| FCFS | simplicity | convoy effect | FIFO queues inside same-priority levels |
| SJF / SRTF | avg waiting time (optimal) | needs the future; starves long jobs | MLFQ approximates it from history |
| Round Robin | response time, fairness | quantum tuning; ignores importance | the base rotation everywhere |
| Priority (+aging) | importance | starvation without aging | nice values, cgroup weights |
| MLFQ | interactivity + throughput | gameable; tuning knobs | Windows scheduler lineage |