Systems Software Flashcards
What is the interupt process?
- Interupt request
- Importance of interupt is decided
- Coressponnding Interupt Service Routine (ISR) is found
- ISR execution
- Interupt exit
What happens if the interupt is more important than the current task?
- FDE cannot be stopped halfway so current FDE cycle is completed
- Contents of registers is temporarily saved to memory
- Processor hands control to coressponding ISR which completes response
- Contents of registers is restored
What is interupt prioritisation and nesting?
- Interupt prioristisation is the processors ability to switch to higher priority interupts
- Nesting is the processors ability to deal with interupts within interups
- Proper management of nesting allows the system to remain stable
What is scheduling?
- Deciding which tasks to process, for how long and in which order is achieved through scheduling
- A CPU is responsible for processing tasks as fast as possible
- Different algorithms are used to prioritise different tasks in different ways
What is round robin scheduling?
- Equally distributes processing time amongst all tasks
- All tasks put in a queue
- If the task hasn’t been completed by the end of its time quantam (allocated time) it is moved to the back of the queue
What is multi-level feedback queue scheduling?
- Shorter and more critical tasks are processed first
- All tasks join the highest priority but trickle down to lower priorities if they exceed the time quantam
Why is memory management necessary?
- When a user opens an application, its data is loaded from storage into active memory so that it can run smoothly
- Primary memory is a limited resource so must be carefuly managed to allow efficient multi-tasking
What 3 techniques are used in memory management?
- Paging
- Segmentation
- Virtual memory
What is paging and how does it work?
- Method of chunking memory into equal-size blocks
- These chunks are known as pages
- Pages will be taken away from applications not in use and allocated to active applications
- Paging can lead to internal fragmenation
- Internal fragmentation will lead to unused memory
What is memory segmentation and how does it work?
- Chunking memory into blocks that correspond to different types of data needed by an application
- Segments are not all the same size and are sized depending on the allocated data
- Segmentation can lead to external fragmentation
- This is because once an application finishes, data is moved out and the space left will be of an uneven size
What is virutal memory and how does it work?
- If a computer is running low on memory, it can use secondary storage as an “extension” to its primary memory
- Vram creates an illusion of a larger memory and enables applciations to continue multi-tasking
- Accessing data in vram is slower than primary memory
What is a distributed OS?
- Tasks run on multiple different machines appearing as one unit
- Used for efficient task distribution
What is an embedded OS?
- The system running inside a device that is not primarily a computer system
What is the BIOS and boot sequence?
- The BIOS is the first system to run and tells the computer how to boot
- It completes the POST tests
- If no errors are encountered during the POST tests, the bootstrap sequence is run
What is a device driver?
- A piece of software that enable communication between the operating system and specific hardware devices
- Allows the OS to control and interact with hardware devices
What is a virtual machine?
- Virtual machines are entire operating systems running inside another operating system
- VM management software includes a hypervisor that monitors all activity happening inside the VM
When are virtual machines used?
- Cross platform compatability: not all software is compatible to run on all operating system. You can use a virtual machine to emulate a different operating system
- Software testing: isolate test environments, leaves the host computer unaffected. Can test multiple operating systems on one computer for greater compatability
Consequences of using virtual machines
- VMs share the same hardware as the host computer; over-use of VMs can exhaust the host computer
Different types of operating systems
- Embedded OS: designed for a specific task, running within a device that is not specifically a computer system
- Distributed OS: tasks are run on multiple machines appearing as a single unit
- Real time OS: designed for immediate data processing and responses
- Multi-user OS: supports multiple users accessing computer resources concurrently