1.2.1 Systems Software
1.2.1 Systems Software
1 Systems Software
What you need to know
(a) The need for, function and purpose of operating systems.
(c) Interrupts, the role of interrupts and Interrupt Service Routines (ISR), role
within the Fetch-Decode-Execute Cycle.
(d) Scheduling: round robin, first come first served, multi-level feedback queues,
shortest job first and shortest remaining time.
(f) BIOS.
(h) Virtual machines, any instance where software is used to take on the function
of a machine, including executing intermediate code or running an operating system
within another.
An operating system is a low level piece of software that manages the computer’s
hardware & software, and provides an interface between the user and the computer.
Most people use computers because they want to use application software(such as
word processing, internet browsing) however these applications only work inside of
an operating system environment. The operating system is the software that
controls, manages, and runs all of the applications on the computer.
Loading a software interface for the user to interact with (usually a GUI or CLI)
User management
File management
When a user is using a computer they are either interacting directly with the
operating system ( e.g. logging in to the computer) or via an application (e.g.
saving a word processing document)
Distributed
Embedded
Multi-tasking
Real time
Task
BIOS Software stored in ROM since it will never need to change and should not be
changed to maintain data security and may provide alternate boot/hardware
management options for users (e.g. altering fan speed). BIOS tends to be specific
to the motherboard and contains details of attached hardware
The BIOS runs the Power-On Self-Test (POST): (beep sounds when you start your
computer help indicate any errors). The diagnostic testing sequence is run by the
BIOS when the device is powered on.
Device Drivers
Device Drivers are the Instructions used by the OS to operate with a peripheral
such as a mouse, keyboard, printer etc. They provide settings to configure the
hardware for use with the OS. Hundreds of peripherals come preinstalled on the
operating system and specific ones can be downloaded. The drivers for a specific
device are stored within a file known as a registry or directory. The drivers
convert general inputs/outputs from the operating system into code that will run on
the intended device (and vice-versa)
Virtual Machines
Computers vary in the hardware they use, and run different programs and operating
systems. Sometimes we might want to have the functionality and capability of
another computer system running on our own computer. It may be that the hardware
for the other system no longer exists or is unavailable.
We can use software to emulate the other computer system so that our computer can
behave like that system. This emulation is known as a virtual machine.
Primary Memory
Secondary Memory
Paging
• When primary memory is almost full, inactive pages are moved temporarily from
primary to virtual memory. When an application needs data held on a page in virtual
memory, it will be swapped back into main memory and another inactive page may take
its place
• To manage these pages, a ‘page table’ is created by the memory manager to store
the starting address of each page (where the first byte of the page is located in
physical memory)
Segmentation
Primary memory is partitioned into logical divisions that hold sections of program
data. These ‘segments’ of memory do not have fixed sizes.
Stack segment:
Holds variables
Free memory:
Data segment:
Where data used by the running code (e.g. variables) are stored
Code segment:
Paging VS segmentation:
Similarities:
Neither requires an entire program to be loaded into primary memory; more can be
called upon when it’s needed
Differences:
What is Paging?
What is Segmentation?
Interrupts
Interrupts are signals (from either attached devices or programs running within the
OS) that cause the CPU to pause,
consider the signal and act accordingly. Most modern computers are interrupt-driven
– they execute whatever is next in the queue instead of waiting for (slower) I/O
devices to respond (which would waste time).
• An interrupt can occur at any point during the execution of an instruction. When
this occurs, the following steps are taken to ensure that the cycle can be resumed
once the interrupt has been dealt with:
Suspend the execution of the current instruction and move it back into the queue
Save the contents of registers in a stack so that they can be retrieved once the
interrupt has been dealt with
Load the program counter with the address of the interrupt service routine and
continue the cycle with a greater priority
Once the execution of the interrupt service routine is complete, the address of the
next instruction in the queue (probably the one that was paused) is fetched and the
cycle continues as normal
Scheduling
Scheduling: the way in which a multitasking OS orders tasks for the CPU (in terms
of priority)
Processes: parts of programs loaded into memory that are potentially executed by
the CPU
Processes as many jobs as possible (in a certain time) to make maximum use of CPU
time
Makes programs appear responsive to the user (so delays are not noticed)
Give fair CPU allocation to all current processes – leave none waiting for too long
Avoid ‘deadlock’, where nothing is processed because all processes are waiting for
others
1. Blocked:
2. Ready:
Will run when the CPU is free (and the process has the highest priority)
3. Running: