while performing scheduling algorithm the process is said to be arrived in ready queue on specified arrival time
is there any way to determine when the process will arrive in ready queue
or we can only tell when process is arrived
thank you
while performing scheduling algorithm the process is said to be arrived in ready queue on specified arrival time
is there any way to determine when the process will arrive in ready queue
or we can only tell when process is arrived
thank you
If The process is running and then does some I/O and blocks then the scheduler picks another process to run and when the blocked process completes it's I/O it moves to the ready queue and generates an interrupt to notify the cpu, and the scheduler chooses to run the now ready process or do something else.