What is CPU Scheduler?
3 years ago
Operating System
Selects from among the processes in memory that are ready to execute, and allocates the CPU to one of them. CPU scheduling decisions may take place when a process:
- Switches from running to waiting
- Switches from running to ready
- Switches from waiting to
- Terminates
Scheduling under 1 and 4 is non-preemptive. All other scheduling is preemptive.
Sanisha Maharjan
Jan 20, 2022