What happens when an interrupt occurs in round robin scheduling?
Answers
Answered by
0
This can happen independent of whether the owner is actually running on a CPU, or is waiting it's turn, ready for execution, or is awaiting another event. When a mutex owner releases it, the waite are put in the ready for execution set. The scheduler can then schedule them as per policy.
Similar questions