What is Non-Preemptive Scheduling?

In this, once a process enters the running state it cannot be preempted until it completes it’s allocation time. When scheduling takes place only under the below circumstances we say that the scheduling scheme is non-preemptive or cooperative.

  • When a process enters the waiting state (due to an I/O request or an attempt to call wait() to end a child process), it changes from the running state.
  • when a process comes to an end.

A process cannot be stopped under non-preemptive scheduling until it ends on its own or runs out of time. A process with a longer burst time on its CPU would cause a process with a shorter burst time to starve.

Example of Non-Preemptive Scheduling: Consider there are four processes P0, P1, P2, and P3 uses non-preemptive scheduling technique.

Process ID

Arival Time

Burst Time

P0

3

2

P1

2

4

P2

0

6

P3

1

4

Non Preemptive Scheduling

Advantages of Non-Preemptive Scheduling

  • It has a minimal scheduling overhead.
  • It’s an extremely easy technique.
  • Less processing power is used.
  • It provides a high throughput.

Disadvantages of Non-Preemptive Scheduling

  • For the procedure, it responds slowly.
  • Errors can cause a machine to freeze.

Difference Between Preemptive and Non-Preemptive CPU Scheduling Algorithms

Preemptive scheduling permits a high-priority task to interrupt a running process, When a process transitions from the running to the ready or from the waiting to the ready states, preemptive scheduling is used. Whereas in non-preemptive scheduling, any new process must wait until the running process completes its CPU cycle. In this article, we will discuss what are preemptive and non-preemptive scheduling and their differences.

Similar Reads

What is Preemptive Scheduling?

In this, a scheduler may preempt a low-priority running process anytime when a high-priority process enters into a ready state. When scheduling takes from either of the below circumstances it is preemptive scheduling –...

What is Non-Preemptive Scheduling?

In this, once a process enters the running state it cannot be preempted until it completes it’s allocation time. When scheduling takes place only under the below circumstances we say that the scheduling scheme is non-preemptive or cooperative....

Difference Between Preemptive and Non-Preemptive Scheduling

Preemptive Scheduling Non-Preemptive Scheduling The CPU is allocated to the processes for a certain amount of time. The CPU is allocated to the process till it ends its the fewer execution or switches to waiting state. The executing process here is interrupted in the middle of execution. The executing process here is not interrupted in the middle of execution. It usually switches the process from the ready state to the running state, vice-versa, and maintains the ready queue. It does not switch the process from running state to a ready state. Here, if a process with high priority frequently arrives in the ready queue then the process with low priority has to wait for long, and it may have to starve. Here, if CPU is allocated to the process with a larger burst time then the processes with a small burst time may have to starve. It is quite flexible because the critical processes are allowed to access CPU as they arrive into the ready queue, no matter what process is executing currently. It is rigid as even if a critical process enters the ready queue the process running CPU is not disturbed. This is cost associative as it has to maintain the integrity of shared data. This is not cost associative. This scheduling leads to more context switches. This scheduling leads to less context switches compared to preemptive scheduling. Preemptive scheduling allows a process to be interrupted in the midst of its execution, taking the CPU away and allocating it to another process. Non-preemptive scheduling ensures that a process relinquishes control of the CPU only when it finishes with its current CPU burst. Preemptive scheduling incurs a cost associated with accessing shared data. Non-preemptive scheduling does not increase the cost. It also affects the design of the operating system Kernel. It does not affect the design of the OS kernel. Preemptive scheduling is more complex. Simple, but very inefficient. Example: Round robin method. Example: First come first serve method....

Frequently Asked Question on Preemptive and Non-Preemptive Scheduling – FAQs

How does the choice between preemptive and non-preemptive scheduling affect system performance?...