Draft talk:Operating system/Operating Systems/Scheduling

From Wikiversity
Jump to navigation Jump to search

Every process that needs to be be executed, must reside in RAM and process that need to be executed must have CPU access. In single processor systems, the CPU can handle only one task at a time, so whats if there are to many proceeses that are ready to be executed? The answer is that the operating system then schedules the process accordingly, so that the processor will be able to execute all the process. "Sceduling is an activity that will be done by the opearting system component called the Scheduler. The purpose of the scheduler, is to choose processes from the list of ready processes". Dispatcher id: the component of the Operating System that dispatches the ready process to the processor, so that it can be executed.

Scduling alrothims are listed below:

a)First Come First Serve.

b) Shortest Job First.

c) Prioirty Based Scheduling.

d) Round Robin.

Lets see, one by one, what we mean by these algorthims.

a) First Come First Serve: As meaning suggests, the process that will come first will be served first by the processor. This algrothim is simple and can be easily implemented. To implement this FIFO is maintained. FIFO(First in; First Out). The process site in front of ready queue(The queue contains processes that can be executed by CPU) will be executed first. But the disadvanttage of this algorithm is that average wating time for any process is longer.

b)Shortest Job First: : As the name suggests the processor executes the job which requires the shortest execution time. Even when there are 24 or more processes in the ready queue the processor would pick the 24th process if it was the one that needed less time.

c)Priority based scheduling:: c)Round robin::

Retrieved from "http://en.wikiversity.org/wiki/Operating_Systems/Scheduling"