Single-Queue Scheduling
This lesson describes the single-queue scheduling mechanism and covers its strengths and shortcomings.
We'll cover the following...
With the background in place, we now discuss how to build a scheduler for a multiprocessor system. The most basic approach is to simply reuse the basic framework for single processor scheduling, by putting all jobs that need to be scheduled into a single queue; we call this single-queue multiprocessor scheduling or SQMS for short. This approach has the advantage of simplicity; it ...