Open In App

Difference between FCFS and Priority CPU scheduling

Last Updated : 08 Aug, 2022
Improve
Improve
Like Article
Like
Save
Share
Report

1. First Come First Served (FCFS) : First Come First Served (FCFS) is the simplest type of algorithm. It is a non-preemptive algorithm i.e. the process cannot be interrupted once it starts executing. The FCFS is implemented with the help of a FIFO queue. The processes are put into the ready queue in the order of their arrival time. The process that arrives first becomes the head of the queue while the others that arrive after are added to the rear of the queue. In First Come First Served (FCFS) algorithm, the process that arrives first, is sent first for execution by the CPU when CPU is free. The main disadvantage of this algorithm is that the average waiting time is often quite long. It also leads to the convoy effect. This results in lower device or CPU utilisation and lower efficiency. 

2. Priority Scheduling Algorithm: Priority scheduling algorithm executes the processes depending upon their priority. Each process is allocated a priority and the process with the highest priority is executed first. Priorities can be defined internally as well as externally. Internal priorities are decided by the system depending upon the number of resources required, time needed etc. whereas external priorities are based upon the time in which the work is needed or the amount being paid for the work done or the importance of process. Priority scheduling can be preemptive or non- preemptive. 

Note: 

  • If two processes have the same priority then tie is broken using FCFS.
  • The waiting time for the highest priority process is always zero in preemptive mode while it may not be zero in case of non preemptive mode.

Disadvantages: The major problem is the starvation or indefinite blocking. It may so happen that in stream of processes, the system keeps executing the high priority processes and the low priority processes never get executed. Solution: A solution to the problem is aging. Aging refers to gradually increasing the priority of processes waiting in the system by a fixed number after a fixed interval, say by 1 in every 10 minutes. This will ensure that a low priority process also gets executed by slowly increasing its priority with the time. 

Differences between FCFS and Priority scheduling algorithm are as follows:

First Come First Served (FCFS) Priority scheduling
It executes the processes in the order in which they arrive i.e., the process that arrives first is executed first. It executes the processes based upon their prioritied i.e., in descending order of their priorities. A process with higher priority is executed first.
It is non preemptive in nature. It is both non-preemptive and preemptive in nature.
It results in quite long waiting time for the processes and thus increases average waiting time. There is no idea of response time and waiting time.
It leads to the convoy effect. It may happen that a low priority process keeps waiting for an indefinite time and never gets executed.
It is the easiest to implement in any system. It is best suited for real time operating systems.
It does not suffers from starvation. It suffers from starvation.

Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads