Skip to main content

CPU Scheduling In Operating System


  
    ⇰  CPU SCHEDULING :-

CPU scheduling is the basis of multiprogrammed operating systems. By switching the CPU among processes, the operating system can make the computer more productive. As we know in a single-processor system, only one process can run at a time and thers must wait until the CPU is free and can be rescheduled. The objective of multiprogramming is to have some process running at all times, to maximize CPU utilization.  
    
  In a simple computer system, the CPU just sits idle when a process goes for I/O works. All this waiting time is wasted,no useful work is accomplished. With multiprogramming, we try to use this time productively. Several processes are kept in memory at one time. when one process has to wait, the operating system takes the CPU away from that process and gives the CPU to another process. This pattern continues. Every time one process has to wait, another process can take over use of the CPU.

CPU Scheduling is a process of determining which process will own CPU for execution while another process is on hold. The main task of CPU scheduling is to make sure that whenever the CPU remains idle, the OS at least select one of the processes available in the ready queue for execution. The selection process will be carried out by the CPU scheduler. It selects one of the processes in memory that are ready for execution.


    ⇰  SCHEDULING CRITERIA :-

In choosing which algorithm to use in a particular situation, we must consider the properties of the various algorithms. Many criteria have been suggested for comparing CPU-scheduling algorithms. Basically CPU scheduling  algorithms depend on following criterias:-
   ∘ CPU utilization.
   ∘ Throughput.
   ∘ Turnaround Time.
   ∘ Waiting time.
   ∘ Response time.


  ∘ CPU utilization :-  In multiprogramming we have to keep the CPU  busy all time. CPU utilization can range from 0 to 100 percent. But normally it range from 40 percent to 90 percent.

∘ Throughput :- Throughput  is the number of processes that are completed per time unit. For larger processes, this rate may be one process per hour, for shorter processes it may be ten processes per second.

 ∘ Turnaround Time :-  Turnaround time is the sum of the periods spent waiting to get into memory, waiting in the ready queue, executing on the CPU, and doing I/O. So the turnaround time is interval from the time of submission of a process to the time of completion of process.

∘ Waiting time :- Waiting time is the sum of the periods spent waiting in the ready queue during the execution of process.

∘ Response time :- Response time is the duration of time from the submission of a request until the first response is produced. So response time is the time it takes to start responding.The turnaround time is generally limited by the speed of the output device.


    ⇰  SCHEDULING ALGORITHMS :-

There are many types of scheduling algorithms but all those are basically divided into two types:-
 i > Nonpreemptive or Cooperative. 
ii > Preemptive.

 i > nonpreemptive or cooperative :- In nonpreemptive scheduling, once the CPU has been allocated to a process, the process keeps the CPU until it releases the CPU either by terminating or by switching to the waiting state.

 ii > Preemptive :- In preemptive scheduling the CPU can be preempted or taken from the process when a new process arrives with more priority then currently running process.



CPU Scheduling Algorithms in Operating Systems



From here we will watch different types of scheduling algorithms in next comming post.  

Share, Follow and please comment if you find anything incorrect, or to share more information about the topic discussed above.

Comments

Post a Comment

Please comment.

Popular posts from this blog

Process Scheduling And Types of Process Schedular :-

        ⇰ PROCESS SCHEDULING Process Scheduling  is a task  of Operating System that schedules processes of different states like new, ready, waiting, terminated  and running.This scheduling helps in allocation of CPU time for each process, and Operating System allocates the CPU time for each procss. And the process scheduling plays important role to keep the CPU busy all the time.  ⏩   Followings are some objectives of Process Scheduling :-  i > To increase the amount of users within acceptable response times.  ii > To maintain the balance between response and utilization of system. iii > To decrease the enforce priorities and  give reference to the processes holding the key resources.      ⇰  PROCESS SCHEDULAR A scheduler carries out the pro cess scheduling work. Schedulers are often implemented so they keep all computer resources busy and  allows multiple users to share system resources  to achieve  multiprogramming .  There are  mainy three types of pro

Process & Its state And process control block :-

                ⇰  PROCESS :- A process can be thought of as a program in execution. Means when any program is executed it becomes process. A processwill need certain resources such as CPU time , memory, files and I/O devices to complete its task. These resources are allocated to the process either when it is created or at the time of execution.             A process is the unit of work in most systems. A system consistes of a collection of processes. All these processes may execute concurrently. Traditionally a process contained only a single thread. Most modern operating ststems now supports processes that have multiple threads.         The operating system is responsible for several important works of process management as - the creation and deletion of process, the schrduling of process, communication and deadlock handling of process. Process is broudly divided into two types:-  i> System  Process. ii> User Process. Early computers allowed only one program be ex

Semaphores In Process Synchronization

   ⇰  Semaphores :-   Semaphore is actually a method or tool to prevent race condition. Race condition can cause loss of data or even deadlock situation. For prevention from these conditions, the semaphore is one of the method.  Semaphore was proposed by Dijkstra in 1965. Simaphore    is a very significant technique to manage concurrent processes.  Semaphore is useful tool in the prevention of race condition. But the use of semaphore never means a guarantee that a program is free from these problems.     Semaphore is an integer variable which is used in mutual exclusive manner by various concurrent cooperative processes in order to acheive synchronization. Hence semaphore is one of the way to achieve synchronization.  Semaphore is basically  a variable which is non-negative and shared between threads. This variable is used to solve the critical section problem and to achieve process synchronization in the multiprocessing environment. Semaphore contains some operations as f