Day 7 Flashcards
A(n) _______ condition occurs due to a process depending on the timely output of another process.
Race
_________ scheduling is a non-preemptive algorithm that utilizes a priority to determine when the process will run?
Priority
Excessive swapping is known as ________.
Thrashing
On a 32 bit system, virtual memory extends memory demands by providing a logical _____ of addressable space for every process.
2 GB
Linux device drivers are installed as __________ in the /lib directory.
LKM
Virtual memory is commonly implemented through the use of which of the following?
Virtual addressing, page directories, page tables, swap/page file.
VMware ESXi Server is an example of a _____ VMM.
Type 1
List examples of preemptive scheduling algorithms.
Round robin, multilevel queue, multilevel feedback queue
Tracks data that is stored in cache.
Transaction look aside buffer
Uses physical disk space to store memory data that is not actively being used in RAM
Swap/page file
Every process has one. It contains entries used to point to specific page table entries.
Page Directories
Usable by process resources in user mode, these identify the page directory entry, the page table, and the offset.
Virtual Addresses
It contains pages that identify the page frame address of the data being sought
Page tables
Holds global and static variables which exist throughout the life of the program.
Data
Used to store the compiled code of the currently running program.
Text
Part of the computer’s memory which is reserved for external libraries of code and shared memory.
Free Space
This memory is used by non-static, local variables that are explicitly declared in a program. It is efficiently managed by the CPU allowing very fast access to variable data.
Stack
Used for dynamically allocated memory and is uninitialized at first.
Heap
This type of Linux device is expected to utilize the system calls such as read() and write() and transfers data one block at a time.
Block device
This windows _______ routine is used to register the rest of the driver with the operating system.
Initialization
When an interrupt occurs, the kernel traps the current executing process/thread and changes its state to _______?
Wait
The ______ is used to track info stored in cache.
Transaction look-aside buffer TLB
(True or False) traps only deal with exceptions.
False
The ____ schedules between threads using switching.
Dispatcher
_____ is the amount of time the process takes to react to user request.
Response time
_________ memory management is characterized by only allowing a single process to exist in RAM at a time.
Single user contiguous
Used to initiate a data transfer to or from a device.
Start I/O Routine
Used to send a driver notification whenever a new device is detected. These drivers support PnP.
Add-device routine
These are the main functions provided by a device driver. When called on to perform an I/O operation, the OS initiates this routine.
Dispatch Routine
Primarily used in controlling ISR’s. For instance, once the ISR is completed, the DPC is used in ending the interrupt and returning to normal scheduling.
Deferred Procedure Routine
When a device interrupts, the kernel schedules the interrupt and transfers control here.
Interrupt Service Routine
Called when the LKM is loaded. It is used to register the rest of the driver’s routines with the OS.
Initialization Routine
List examples of non-preemptive scheduling algorithms.
First come-first served, shortest job first, priority.
A(n) _____ scheduling algorithm allows a process to run for a set amount of time called a quantum.
Preemptive
A ____ condition may occur due to a process depending on the timely output sequence of another process.
Race
On a multi-processing system, the simultaneous scheduling of multiple processes is known as ______?
Concurrency
_____ is a concept used by virtual memory to divide each process into small chunks.
Paging
(True or False) The upper 2 GB of memory on a 32 bit OS is reserved for user space process memory requirements,
True
(True or False) A process is a small segment of code that is spawned and used by a thread at a much lower cost than creating and managing an entirely new thread.
False
_______ are used to identify the page frame addresses of the desired info.
Page table entries PTE
Called when the LKM is loaded. It is used to register the rest of the driver’s routines with the OS.
initialization Routine
These routines equate to the windows dispatch routines and can be subcatergorized as Open, Release, Read, Write, Llseek, and loCtl dispatches.
File Operations Routine
Devices are identified using numbers 0-255
Device Naming Routines
_____ is defined by the number of processes terminated in a set amount of time.
Throughput
(True or False) An application will not become a process until it is executed.
True
A _______ is an instance of a OS executing on a virtual system.
Virtual machine