process execution consists of a cycle of CPU execution and I/O wait; CPU burst followed by I/O burst
3
New cards
CPU scheduler
selects from among the processes in ready queue, and allocates a CPU core to one of them
4
New cards
Preemptive
a process is forced out of the CPU even if it doesn't need to; can result in race conditions when data are shared among several processes; virtually all modern operating systems including Windows, MacOS, Linux, and UNIX use this scheduling algorithm
5
New cards
Nonpreemptive
once a process is selected to run, it won't be forced to leave even if a shorter process arrives in the ready queue
6
New cards
Dispatcher module
gives control of the CPU to the process selected by the CPU scheduler; this involves switching context, switching to user more, jumping to the proper location in the user program to restart that program
7
New cards
Dispatch latency
time it takes for the dispatcher to stop one process and start another running
8
New cards
CPU utilization
[ Scheduling Criteria ] keep the CPU as busy as possible (maximize)
9
New cards
Throughput
[ Scheduling Criteria ] number of processes that complete their execution per time unit (maximize)
10
New cards
Turnaround time
[ Scheduling Criteria ] amount of time to execute a particular process (minimize)
11
New cards
Waiting time
[ Scheduling Criteria ] amount of time a process has been waiting in the ready queue (minimize)
12
New cards
Response
[ Scheduling Criteria ] amount of time it takes from when a request was submitted until the first response is produced (minimize)