I need help with this. Round robin: a special case as two processed one used up it time quantum and the other arrives at the same time. For example, we has the following processes:

Process P1: + Arrival time: 0 + Burst time: 7 Process P2: + Arrival time: 5 + Burst time: 7 Assuming that time quantum q = 5 and after time quantum ending if a process doesn't complete it is added to at the end of the queue.

My confusion is about at the time 5. At this time, time quantum of P1 expires and P2 also arrives. What should come the queue first?

2

There are 2 best solutions below

0
On

The arrived process is placed in the ready queue before the existing executing process ( time quantum completed ) in order to minimize the average response time. The time taken for context switching is negligible.

0
On

i think this question is similar to yours and the answer will be helpful
Special case scheduling
in short

    |   P1       |  P1 |    P2   | P2  |
    0            5      7        12   14

The reason for this,as given in the above link ,is that the OS prefers P1 since it was recently running and hence it can avoid an unnecessary context switch i.e
p1->p1->p2->p2 is better than p1->p2->p1->p2