Section 3: Process Scheduling - bmitch26/Operating-Systems GitHub Wiki
Section 3. Process Scheduling
CPU Scheduling
The way in which an OS decides which task gets to use the CPU
Source
Preemptive vs. Non-Preemptive Scheduling
Preemptive lets a process be booted from the running queue before it is finished, whereas Non-Preemptive waits for the
processes to finish as needed. Source