OS Topic 11 - Context Switching Flashcards
Process states
You have seen that an operating system appears to allow many processes to run concurrently, but that in reality it is rapidly s_________ execution among processes.
switching
Process states
In order to perform process switching, the operating system has to keep track of which processes currently exist and which are ready to run.
For each process, the operating system maintains a record called a c_______ b____ which contains relevant information about the process, such as which areas of memory are allocated to it.
context block
Process states
The context block also records the state of the process.
Give an example of one such state.
E.g. Whether the process is running or not.
Process states
If a process initiates an I/O operation what does the operating system typically do?
It suspends the process until the I/O operation completes.
Process states
Why does the OS suspend a process that has initiated an I/O operation until after the operation completes?
Because I/O operations take a much longer time than the main processer, if it were to wait it could be idle for some time.
Process states
A suspended process is said to be ‘b_________’.
blocked
Process states
Once an OS has suspended a process until it has completed it’s I/O operation, what might it do?
Allow another process to be executed.
Process states
In ‘state diagrams’ which shapes are used to represent states?
Ovals
Process states
In ‘state diagrams’ which shapes are used to represent transitions between states?
Arrows
Process states
What happens when the I/O operation completes?
The process that was blocked is no longer blocked and the operating system must update its s_______ to show this.
state
Process states
Once a process has been unblocked the OS can either update its state to r__________, or
to r_________.
running
ready
Process states
Suppose a process starts a lengthy calculation without performing any I/O. If it were to continue to be executed, then it would stop any other processes from being executed. How could the operating system prevent this?
By limiting the maximum amount of time for which a process can run:
it may allow, say, 10 ms. At the end of this time slice or quantum, the operating system will suspend the running process and pick another process to be executed.
Process states
Given that only one process can run at any one time on a single processor, how is it possible for the OS to run a process in order to interrupt a process?
There are two solutions:
- c_____________ multitasking
- p_____________ multitasking.
cooperative multitasking
pre-emptive multitasking
Process states
Cooperative multitasking is a solution whereby all application programs are written so that they p_____________ yield control back to the operating system.
The operating system then gets a chance to decide which process should run next.
periodically
Process states
There are problems with cooperative multitasking: programmers may be tempted to gain extra performance for their application by _____________________________________________
A worse problem is a program containing a bug that results in an endless loop.
It would never _____________________________________________
by breaking the rules and not yielding control
yield control and so could crash the entire machine.
Process states
Pre-emptive multitasking is an alternative solution. It is a way in which the operating system can always pre-empt an executing process and take control of the processor at any time.
It uses a h____________ i_____________ to do this.
A hardware interrupt
Process states
Hardware interrupts
An OS will set a timer to generate r________ i___________ that will interrupt any running process.
regular interrupts
Process states
True or false?
A pre-emptive system may also allow a process to yield control voluntarily.
True
Context switching
Multitasking depends on r________ s_________ between running processes. Changing which process is c_________ executing is known as context switching;
rapid switching
currently
Context switching
There are three problems the OS designer must solve, which essentially address the w______, w______ and h_____ of context switching.
when, what, how
Context switching
‘When’
The first is to ensure that the OS itself is e_________ when a context switch is required.
executing
Context switching
‘What’
The second is what information about a process must be s_______ so that it can be stopped and restarted.
saved
Context switching
‘How’
The third is how to c_________ switch the processor from executing one process to executing another.
cleanly switch
Context switching
True or false?
‘State’ transition only happen when a process is blocked.
True or false?
‘State’ transitions are handled by the operating system.
False
State transitions only happen during a system call or an interrupt.
True
Context switching
What mode will the processor be in while a context switch occurs?
kernel mode
Kernel mode is essential for privileged instructions and ensures that only the OS can access key data structures such as the context blocks
Context switching
In the context of context switching, what does “IP” typically refers to?
Instruction Pointer
Context switching
The Instruction Pointer is a r______ in a computer’s central processing unit (CPU) that points to the memory address of the next instruction to be executed.
register
Context switching
What is a register?
In computer architecture, a register is a small, fast s_______ l_________ within the CPU (Central Processing Unit).
storage locations
Context switching
What are registers used for?
Registers are used to quickly s______ and r_______ data. Registers are part of the CPU’s control unit.
store and retrieve
Context switching
True or false?
Registers play a crucial role in the execution of machine instructions.
true
Context switching
Processes and threads
True or false?
A context switch between the threads of one program is easier and quicker than a context switch between different processes?
True
Coordinating concurrent processes
Multiple concurrent processes and threads can also be used to collaborate on tasks, for example a background spell check can run while ____________________________
I type something in the word processor.
Coordinating concurrent processes
One issue that arises when considering collaborating processes is whether m________ can be shared between processes.
What alternative, that can already share memory, can be used?
memory
An OS normally provides separate memory space for each full process for privacy and security, so additional features must be provided to allow memory sharing in a controlled manner.
threads
Coordinating concurrent processes
Instead of shared memory, an OS can provide other mechanisms to allow separate processes to communicate with each other, for example by passing m________ from one process to another via the operating system.
messages
Coordinating concurrent processes
There are some problems that arise when writing programs that r______ on concurrent processes.
rely
Coordinating concurrent processes (a race condition)
A race condition in programming occurs when the outcome of a program depends on the timing of events, particularly when multiple parts of the program are trying to do things at the same time. It’s like a “race” between different parts of the program, and the result can be u__________ and i__________ if not managed properly.
unpredictable
incorrect
Remember the bank deposit withdrawal and deposit on the module website.
Coordinating concurrent processes (a race condition)
There are particular portions of the code, known as c______ r_________, where problems can arise; there may be other areas of code that cause no concurrency problems.
critical regions
Coordinating concurrent processes (a race condition)
True or False
Third, problems only arise if concurrent processes execute critical regions for a shared resource.
true
Coordinating concurrent processes (a race condition)
True or false?
Code doesn’t have to be perfect. It is okay if code is not written to operate correctly in all circumstances.
False
Code must be written to operate correctly in all circumstances.
Coordinating concurrent processes (a race condition)
Code must be written to operate correctly in all circumstances. This means identifying s_______ r_________ and critical regions of code and using techniques such as the s__________.
shared resources
critical regions
semaphore
Coordinating concurrent processes (a race condition)
What is the semaphore technique?
A semaphore can lock a critical region so that only a s_________ process can execute at a time.
If critical regions are correctly identified, and c______________ avoided in these regions, then correctness can be guaranteed and race conditions, for example, cannot occur.
single
concurrency
Semaphores
A simple metaphor for a semaphore is: a barrier that controls access to a car park. If the barrier is up, then a car can enter; but if it is down, then the car must wait. When a car leaves, the barrier is raised, allowing any waiting car to enter.
Which integer 1 or 0 is used to show that the barrier is raised?
1 for raised
0 for down
Semaphores
Using a semaphore requires two system calls:
sem_wait if the semaphore count is 0, then the process w______; if not 0, then the count is decremented and the process continues
sem_signal i___________ the count, releasing another process if one is waiting.
waits
increments
Semaphores
There are also system calls needed to c________ and d__________ semaphores so that different semaphores can be used for different applications.
create and destroy
Semaphores
A semaphore used for ‘m______ e_________’ helps to enforce a rule where only one thread or process is allowed to access a specific section of code or resource at any given moment.
mutual exclusion
Semaphores
A semaphore used in this way for mutual exclusion is often referred to as a m_________
mutex