Home »
Operating System
FCFS Scheduling with Overhead
FCFS scheduling with overhead: In this tutorial, we will learn about the overhead in First Come First Served Scheduling (FCFS) algorithm.
By Monika Jha Last updated : May 08, 2023
FCFS Scheduling with Overhead
In the FCFS scheduling, we consider that all the processes or jobs are the CPU bound jobs (if any process spends most of its time simply using the CPU or doing calculations, so this process is called CPU bound process) only. We do not think about the context switching time.
A procedure in which a processor (central processing unit) follows to change from one task (or job) to another while ensuring that the tasks do not conflict by the context or state of a process so that it can be reloaded when required and execution can be resumed from the same point as earlier, this is called Context Switching.
The average waiting time of the system will be increased If we consider the time taken by the scheduler in context switching. This condition also affects the efficiency of the system. It is always overhead in scheduling.
If we consider the context switching time in the system, so the efficiency will be affected. We can describe it with the following example.
Here, we are considering six processes with process id as P1, P2, P3, P4, P5, and P6. The arrival time and Burst time of these processes are as under,
Process Id |
Arrival time |
Burst time |
P0 | 0 | 2 |
P1 | 1 | 3 |
P2 | 2 | 2 |
P3 | 3 | 5 |
P4 | 4 | 6 |
P5 | 5 | 4 |
We denote the context switching time by δ sign and let's take δ=1 unit; Then the Gantt chart of the system will be prepared as follows:
Gantt Chart
By this overhead, the system will take an extra 1 unit of time after the execution of every process or task to schedule the next task.
Useless time / Wasted time = 6 * δ = 6 * 1 = 6 unit
Total time taken by all processes = 28 unit
Useful time of processes = 28 unit – 6 unit = 22 unit
Efficiency (η) of system
= Useful time / Total time
= 22 unit / 28 unit
= 0.7857
= 78.57 %
Inefficiency
= Wasted time / Total time
= (6 / 28 * 100) %
= 21.42 %
References