下列那一項技術是在多核心電腦的作業系統的排程機制中,負責平均分配工作給所有核心的方法?
A循環分時多工機制(Round-robin time-sharing)
B推拉轉移機制(push and pull migration)正確答案
C優先權排程機制(Priority-based scheduling)
D本文切換機制(Context switching)
答案與詳解
Push migration 由專門 task 週期檢查各核心負載,把忙核心的 process 推到閒核心;Pull migration 則是閒核心主動從忙核心拉工作。兩者合力做 load balancing。
