12 Dec 2019

  • December 12, 2019
  • Amitraj
CPU Scheduling

 -> In Multiprogramming systems, the Operating system schedules the processes on the CPU to have the maximum utilization of it and this procedure is called CPU scheduling. The Operating System uses various scheduling algorithm to schedule the processes.

-> This is a task of the short term scheduler to schedule the CPU for the number of processes present in the Job Pool. Whenever the running process requests some IO operation then the short term scheduler saves the current context of the process (also called PCB) and changes its state from running to waiting. During the time, process is in waiting state; the Short term scheduler picks another process from the ready queue and assigns the CPU to this process. This procedure is called context switching.



Why do we need Scheduling?

-> In Multiprogramming, if the long term scheduler picks more I/O bound processes then most of the time, the CPU remains idol. The task of Operating system is to optimize the utilization of resources.

-> If most of the running processes change their state from running to waiting then there may always be a possibility of deadlock in the system. Hence to reduce this overhead, the OS needs to schedule the jobs to get the optimal utilization of CPU and to avoid the possibility to deadlock.








Related Posts:

  • Process Scheduling in OS Process Scheduling -> The process scheduling is the activity of the process manager that handles the removal of the running process from the CPU and the selection of another process on the basis of a particular strategy.… Read More
  • Operations on Process in OS Operations on Process Below we have discussed the two major operation Process Creation and Process Termination. 1) Process Creation -> Process creation is a task of creating new processes. There are different situati… Read More
  • Interprocess communication (IPC) in OS Interprocess communication (IPC) -> Interprocess communication (IPC) is a set of programming interfaces that allow a programmer to coordinate activities among different program processes that can run concurrently in an o… Read More
  • Types of Processes in OS [Independent & Co-operating Process] There are two types of processes:- 1. Independent process-  These processes work independentaly of them-selves. They do not affect and can not be affected by other processes that are running with in the operating s… Read More
  • Process Control Block (PCB) in OS Process Control Block (PCB)  A process control block is a data structure maintained by the operating system for every process. The PCB is identified by an integer process ID (PID). A PCB keeps all the information neede… Read More

Translate

Popular Posts