FIFO Scheduling

Back to Scheduling Algorithms

First-In-First-Out (also called First-Come-First-Served). Processes run in arrival order until completion. Simple but suffers from the convoy effect where short jobs wait behind long ones. Non-preemptive by nature.

operating-systems scheduling algorithms