C-Sharp | Java | Python | Swift | GO | WPF | Ruby | Scala | F# | JavaScript | SQL | PHP | Angular | HTML
RR Scheduling ExampleIn the following example, there are six processes named as P1, P2, P3, P4, P5 and P6. Their arrival time and burst time are given below in the table. The time quantum of the system is 4 units.
According to the algorithm, we have to maintain the ready queue and the Gantt chart. The structure of both the data structures will be changed after every scheduling. Ready Queue:Initially, at time 0, process P1 arrives which will be scheduled for the time slice 4 units. Hence in the ready queue, there will be only one process P1 at starting with CPU burst time 5 units.
GANTT chartThe P1 will be executed for 4 units first. Ready QueueMeanwhile the execution of P1, four more processes P2, P3, P4 and P5 arrives in the ready queue. P1 has not completed yet, it needs another 1 unit of time hence it will also be added back to the ready queue.
GANTT chartAfter P1, P2 will be executed for 4 units of time which is shown in the Gantt chart. Ready QueueDuring the execution of P2, one more process P6 is arrived in the ready queue. Since P2 has not completed yet hence, P2 will also be added back to the ready queue with the remaining burst time 2 units.
GANTT chartAfter P1 and P2, P3 will get executed for 3 units of time since its CPU burst time is only 3 seconds. Ready QueueSince P3 has been completed, hence it will be terminated and not be added to the ready queue. The next process will be executed is P4.
GANTT chartAfter, P1, P2 and P3, P4 will get executed. Its burst time is only 1 unit which is lesser then the time quantum hence it will be completed. Ready QueueThe next process in the ready queue is P5 with 5 units of burst time. Since P4 is completed hence it will not be added back to the queue.
GANTT chartP5 will be executed for the whole time slice because it requires 5 units of burst time which is higher than the time slice. Ready QueueP5 has not been completed yet; it will be added back to the queue with the remaining burst time of 1 unit.
GANTT ChartThe process P1 will be given the next turn to complete its execution. Since it only requires 1 unit of burst time hence it will be completed. Ready QueueP1 is completed and will not be added back to the ready queue. The next process P6 requires only 4 units of burst time and it will be executed next.
GANTT chartP6 will be executed for 4 units of time till completion. Ready QueueSince P6 is completed, hence it will not be added again to the queue. There are only two processes present in the ready queue. The Next process P2 requires only 2 units of time.
GANTT ChartP2 will get executed again, since it only requires only 2 units of time hence this will be completed. Ready QueueNow, the only available process in the queue is P5 which requires 1 unit of burst time. Since the time slice is of 4 units hence it will be completed in the next burst.
GANTT chartP5 will get executed till completion. The completion time, Turnaround time and waiting time will be calculated as shown in the table below. As, we know, Turn Around Time = Completion Time - Arrival Time Waiting Time = Turn Around Time - Burst Time
Avg Waiting Time = (12+16+6+8+15+11)/6 = 76/6 units
Next TopicHRRN Scheduling
|