OS Topic 9 - Processes and scheduling Flashcards
The ability of an operating system to run more than one program at a time is known as m________________
multitasking
Processes are concurrent if their lifetimes o______, even if that happens because a single processor rapidly switches execution between different processes so they are never r_______ at the same instant.
overlap
running
Of course, with multiple cores, processes can be running at the same instant, and we could then use the technical term p________
parallel
The issues for the OS for concurrent and true parallel processes are the s______, so OSs must be designed for the more g______ case of concurrent processes.
same
general
The issues for the OS for concurrent and true parallel processes are the same. What are some of the issues?
In both cases, there could be contention for the same resources: shared files, I/O devices and memory.
Most operating systems provide an alternative to the process. This alternative is called a t________.
thread
A thread represents a separate execution of a program, just as a process does, but threads share the m_______ and other r___________ allocated to a single process. This means that the program can be structured as two or more tasks that are being executed apparently at the same time and that share the same data.
memory
resources
An advantage of threads over processes is that, because they share memory and other resources, the operating system can create them more q_________ and switch between them more q__________.
quickly
quickly
True or False?
Each process is an independent entity.
True
Task Manager
The number of active tasks will vary according to what software you are running.
Each one has a unique PID.
What does PID stand for?
process identifier
Task Manager
RSS: the amount of physical memory currently used. What does RSS stand for?
(resident set size)
Task Manager
What does VM-Size stand for?
(virtual memory size) the total amount of memory used by the process
Task Manager
What does User mean?
name of process user
Task Manager
What is ‘State’
process state, shown as a variety of letters
Task Manager
What is ‘Prio’
process priority
Task Manager
What does PPID stand for?
parent process identifier.
Scheduling
One of the key tasks for an operating system is to manage d_____ on the p______, allocating appropriate processor time to different applications and to the operating system itself.
demand on the processor
Scheduling
The central problem is choosing which process to r_____ n______ and for h___ l____; this is known as scheduling.
run next
how long
Scheduling
Switches between processes need to happen many times a second to give the user the illusion of m_______________.
multitasking
Scheduling
Each process is allowed to run only for a short time-slice, often referred to as a q_______, for example 10 ms.
a quantum
Scheduling
A process that is replaced by another when its quantum expires is said to have been p___-e_______.
pre-empted
Scheduling
Frequent switching is particularly needed for an OS described as a real-time operating system.
What is meant by a real-time operating system?
This is a claim that it can respond to events ‘in real time’, something particularly important when software controls equipment.
Scheduling
Why is frequent switching important in a real-time operating system that we might see in equipment such as smart-devices in cars?
It would be disastrous for example if the computer system of an autonomous car stopped controlling the steering while the processor was busy calculating the best route.
Scheduling
Real-time must be specified in terms of time take to note an event, and time taken to deal with an event.
What is the maximum amount of time a real-time OS can take to identify an event?
What is the maximum amount of time that a real-time OS can take to handle the event?
10ms
50ms
Scheduling
Why don’t mainstream OSs have to offer such strong guarantees like real-time OS’s?
Because most processes are not time-critical and the consequences of failure are less severe.
What does FIFO stand for?
First in First Out
If there are four processes lined in order A, B, C, D list the order of execution in FIFO.
A, B, C, D
How would Round Robin scheduling work on 4 tasks called A, B, C, D?
A for a quantum, B for a quantum, C for a quantum, D for a quantum. Repeat until all processes have finished.
How does FIFO do on fairness?
Not well, some processes may take a lot longer than others.
How does Round Robin do on fairness?
Well, all processes get an equal time.
What does it mean when we say a process is ‘starved’?
The process is ready to run but never gets a chance.
Priority
An alternative strategy is to give each process a priority level, usually expressed as a small number, for example 0 to _____.
100
Priority
The queue of ready processes is kept as a priority queue: the head of the queue always has the __________ priority
highest
Priority
When a new high-priority process joins a queue, it ‘q_______ j________’ over lower-priority processes so that the queue is always kept in order of priority.
queue jumps
Priority
Is Priority Scheduling fair?
It can be unfair: a low-priority process may never get a turn.
Priority Classes
A variant is to classify processes into a number of classes of priority and keep a q_______ for each class.
queue
Priority Classes
Let’s say we had two classes, high priority and low priority.
There may be several process in each class,
e.g.
High - DD
CCC
Low - B
AAAA
What letters are in the queue for the high priority class?
DD
CCC
Priority Classes
Let’s say we had two classes, high priority and low priority.
There may be several process in each class,
e.g.
High - DD
CCC
Low - B
AAAA
What letters are in the queue for the low priority class?
B
AAAA
Priority class
For the following classes of priority, what scheduling system can we use for each queue?
High - DD
CCC
Low - B
AAAA
What order would the letters be in?
Round Robin
CDCDC ABAAA
Dynamic scheduling
Another approach is to change p__________ dynamically.
priorities
Dynamic scheduling
Dynamic scheduling can avoid ‘s___________’: a low-priority process that is making no progress – because there are always higher-priority processes waiting – can have its p____________ increased temporarily.
starvation
priority
What does ‘pre-emption’ refer to?
“Pre-emption” refers to the ability of an operating system or a scheduler to interrupt the execution of a currently running process or task in order to give control to another process.
The Linux scheduling system is based around priority and allows the programmer and user some control. A process priority is given as a number: ___________ numbers indicate higher priority.
lower
Normal programs start with a priority of ___ (number)
20
Operating system processes can be given __________ numbers (higher priority).
lower
There is a mechanism called ‘n_________’ which allows a process to change its own priority or that of another.
niceness
The final process priority is the initial priority and niceness added together.
If the initial process were 0, and the niceness was 5, what would the final process priority be?
5
Is a process priority of 5 high priority, normal or low priority?
normal
What is the highest priority (lowest number) that the root can set the niceness of a priority to?
-20
What range of priority might you see given that an Initial priority for a user-space process (whether created by a normal user or root) is 20?
For a process started by a normal user?
20 - 39
(we can add a ‘niceness’ of 0 - 19)
What range of priority might you see given that an Initial priority for a user-space process (whether created by a normal user or root) is 20?
For a process started by root?
The root user can change niceness by values from −20 to 19, so final priority will be in the range 0–39.
Kernel threads can be given negative priorities so they can be guaranteed to take priority over any user-space processes; these are referred to as r_____-t_______ processes. The highest priority is −_____;
real-time processes
-100
True or False
Real-time processes do not take priority over other processes.
False - they do take priority and are used for kernel operations.
Scheduling real-time processes
A real-time process can be scheduled using one of three different schedulers:
FIFO
Round Robin
D____________
Deadline
Scheduling real-time processes
Deadline. A scheduler that allows the process to b_____ an amount of CPU time needed before a deadline.
book
Scheduling real-time processes
Deadlines are suited to handling a______ and v_______ in a buffer where processing must be completed in time for the next block of data to arrive.
audio and video
Scheduling normal processes
The current (2023?) Linux ‘normal’ scheduler is called the C_______ F______ S___________.
The Completely Fair Scheduler
The Completely Fair Scheduler honours the initial priority and niceness values but a_______ p_______ d_______ so that all processes get a ‘fair’ slice of CPU time.
adjusts priority dynamically
What is ‘idle’ process which is found in most OSs and created when the system boots?
The sole purpose of the system idle process is to run when the processor has nothing else to do. Having such a process simplifies the design of the operating system since it can always find at least one process to run.