Updated: October 28, 2024 |
The microkernel makes scheduling decisions whenever it's entered as the result of a kernel call, exception, or hardware interrupt.
A scheduling decision is made whenever the execution state of any thread changes—it doesn't matter which processes the threads might reside within. Threads are scheduled globally across all processes.
Normally the running thread continues to run, but the scheduler performs a context switch from one thread to another whenever the running thread:
In any case, the realtime scheduling rules that were in place on a uniprocessor system are guaranteed to be upheld on a multicore system.
When the blocked thread is subsequently unblocked, it's usually placed on the end of the ready queue for its priority level.